├── .vs ├── UniversityManagementSystem │ └── v14 │ │ └── .suo └── config │ └── applicationhost.config ├── UniversityManagementDB.sql ├── UniversityManagementSystem.sln ├── UniversityManagementSystem.v12.suo ├── UniversityManagementSystem ├── App_Start │ └── RouteConfig.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AssignTeacherController.cs │ ├── ClassAllocateController.cs │ ├── CourseController.cs │ ├── CourseStatisticsController.cs │ ├── DepartmentController.cs │ ├── EnrollCourseController.cs │ ├── HomeController.cs │ ├── ScheduleInfoController.cs │ ├── ShowResultController.cs │ ├── StudentRegistrationController.cs │ ├── StudentResultController.cs │ ├── TeacherController.cs │ ├── TimePickerController.cs │ ├── UnassignClassroomController.cs │ └── UnassignCourseController.cs ├── CoreSystem │ ├── BLL │ │ ├── ClassAllocationManager.cs │ │ ├── CourseAssignManager.cs │ │ ├── CourseManager.cs │ │ ├── CourseStatisticsManager.cs │ │ ├── DayManager.cs │ │ ├── DepartmentManager.cs │ │ ├── DesignationManager.cs │ │ ├── RoomManager.cs │ │ ├── SemesterManager.cs │ │ └── TeacherManager.cs │ └── DAL │ │ ├── ClassAllocationGetway.cs │ │ ├── CourseAssignGetway.cs │ │ ├── CourseGetway.cs │ │ ├── CourseStatisticsGetway.cs │ │ ├── DayGetway.cs │ │ ├── DepartmentGetway.cs │ │ ├── DesignationGetway.cs │ │ ├── RoomGetway.cs │ │ ├── SemesterGetway.cs │ │ └── TeacherGetway.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── ClassAllocation.cs │ ├── Course.cs │ ├── CourseAssign.cs │ ├── CourseStatistics.cs │ ├── Day.cs │ ├── Department.cs │ ├── Designation.cs │ ├── Room.cs │ ├── Semester.cs │ └── Teacher.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── UniversityManagementSystem.csproj ├── UniversityManagementSystem.csproj.user ├── Views │ ├── AssignTeacher │ │ └── CourseAssignTeacher.cshtml │ ├── ClassAllocate │ │ └── CLassroomAllocation.cshtml │ ├── Course │ │ └── SaveCourse.cshtml │ ├── CourseStatistics │ │ └── CourseStatistics.cshtml │ ├── Department │ │ ├── SaveDepartment.cshtml │ │ └── ShowAllDepartment.cshtml │ ├── EnrollCourse │ │ └── CourseInrollment.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── ScheduleInfo │ │ └── ShowScheduleInfo.cshtml │ ├── ShowResult │ │ └── AllResultInfo.cshtml │ ├── StudentRegistration │ │ └── RegisterStudent.cshtml │ ├── StudentResult │ │ └── SaveStudentResult.cshtml │ ├── Teacher │ │ └── SaveTeacher.cshtml │ ├── UnassignClassroom │ │ └── AllClassroomUnassign.cshtml │ ├── UnassignCourse │ │ └── AllCourseUnassign.cshtml │ └── web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ ├── Microsoft.Web.Infrastructure.dll │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ ├── System.Web.Webpages.Deployment.dll │ ├── System.Web.Webpages.Deployment.xml │ ├── System.Web.Webpages.Razor.dll │ ├── System.Web.Webpages.Razor.xml │ ├── System.Web.Webpages.dll │ ├── System.Web.Webpages.xml │ ├── UniversityManagementSystem.dll │ ├── UniversityManagementSystem.dll.config │ ├── UniversityManagementSystem.pdb │ └── roslyn │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ └── vbc.exe ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── UniversityManagementSystem.csproj.FileListAbsolute.txt │ │ ├── UniversityManagementSystem.csprojResolveAssemblyReference.cache │ │ ├── UniversityManagementSystem.dll │ │ └── UniversityManagementSystem.pdb └── packages.config └── packages ├── Microsoft.AspNet.Mvc.5.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.2.3 ├── Microsoft.AspNet.Razor.3.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.WebPages.3.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0 ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg ├── build │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props ├── content │ ├── web.config.install.xdt │ └── web.config.uninstall.xdt ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml └── tools │ ├── init.ps1 │ └── uninstall.ps1 ├── Microsoft.Net.Compilers.1.0.0 ├── Microsoft.Net.Compilers.1.0.0.nupkg ├── ThirdPartyNotices.rtf ├── build │ └── Microsoft.Net.Compilers.props └── tools │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.VisualBasic.Core.targets │ ├── System.Collections.Immutable.dll │ ├── System.Reflection.Metadata.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── csc.exe │ └── vbc.exe ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── jQuery.1.10.2 ├── Content │ └── Scripts │ │ ├── jquery-1.10.2-vsdoc.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ └── jquery-1.10.2.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.10.2.intellisense.js │ └── uninstall.ps1 └── jQuery.1.10.2.nupkg ├── jQuery.Validation.1.15.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.15.1.nupkg └── repositories.config /.vs/UniversityManagementSystem/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/.vs/UniversityManagementSystem/v14/.suo -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /UniversityManagementDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementDB.sql -------------------------------------------------------------------------------- /UniversityManagementSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem.sln -------------------------------------------------------------------------------- /UniversityManagementSystem.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem.v12.suo -------------------------------------------------------------------------------- /UniversityManagementSystem/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Content/Site.css -------------------------------------------------------------------------------- /UniversityManagementSystem/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Content/bootstrap.css -------------------------------------------------------------------------------- /UniversityManagementSystem/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Content/bootstrap.min.css -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/AssignTeacherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/AssignTeacherController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/ClassAllocateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/ClassAllocateController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/CourseController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/CourseStatisticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/CourseStatisticsController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/DepartmentController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/EnrollCourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/EnrollCourseController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/HomeController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/ScheduleInfoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/ScheduleInfoController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/ShowResultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/ShowResultController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/StudentRegistrationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/StudentRegistrationController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/StudentResultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/StudentResultController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/TeacherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/TeacherController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/TimePickerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/TimePickerController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/UnassignClassroomController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/UnassignClassroomController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Controllers/UnassignCourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Controllers/UnassignCourseController.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/ClassAllocationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/ClassAllocationManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/CourseAssignManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/CourseAssignManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/CourseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/CourseManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/CourseStatisticsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/CourseStatisticsManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/DayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/DayManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/DepartmentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/DepartmentManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/DesignationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/DesignationManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/RoomManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/RoomManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/SemesterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/SemesterManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/BLL/TeacherManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/BLL/TeacherManager.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/ClassAllocationGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/ClassAllocationGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/CourseAssignGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/CourseAssignGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/CourseGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/CourseGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/CourseStatisticsGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/CourseStatisticsGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/DayGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/DayGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/DepartmentGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/DepartmentGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/DesignationGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/DesignationGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/RoomGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/RoomGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/SemesterGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/SemesterGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/CoreSystem/DAL/TeacherGetway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/CoreSystem/DAL/TeacherGetway.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Global.asax -------------------------------------------------------------------------------- /UniversityManagementSystem/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Global.asax.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/ClassAllocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/ClassAllocation.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Course.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/CourseAssign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/CourseAssign.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/CourseStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/CourseStatistics.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Day.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Day.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Department.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Designation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Designation.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Room.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Semester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Semester.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Models/Teacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Models/Teacher.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/_references.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/bootstrap.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/respond.js -------------------------------------------------------------------------------- /UniversityManagementSystem/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Scripts/respond.min.js -------------------------------------------------------------------------------- /UniversityManagementSystem/UniversityManagementSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/UniversityManagementSystem.csproj -------------------------------------------------------------------------------- /UniversityManagementSystem/UniversityManagementSystem.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/UniversityManagementSystem.csproj.user -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/AssignTeacher/CourseAssignTeacher.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/AssignTeacher/CourseAssignTeacher.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/ClassAllocate/CLassroomAllocation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/ClassAllocate/CLassroomAllocation.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/Course/SaveCourse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/Course/SaveCourse.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/CourseStatistics/CourseStatistics.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/CourseStatistics/CourseStatistics.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/Department/SaveDepartment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/Department/SaveDepartment.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/Department/ShowAllDepartment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/Department/ShowAllDepartment.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/EnrollCourse/CourseInrollment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/EnrollCourse/CourseInrollment.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/ScheduleInfo/ShowScheduleInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/ScheduleInfo/ShowScheduleInfo.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/ShowResult/AllResultInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/ShowResult/AllResultInfo.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/StudentRegistration/RegisterStudent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/StudentRegistration/RegisterStudent.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/StudentResult/SaveStudentResult.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/StudentResult/SaveStudentResult.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/Teacher/SaveTeacher.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/Teacher/SaveTeacher.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/UnassignClassroom/AllClassroomUnassign.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/UnassignClassroom/AllClassroomUnassign.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/UnassignCourse/AllCourseUnassign.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/UnassignCourse/AllCourseUnassign.cshtml -------------------------------------------------------------------------------- /UniversityManagementSystem/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Views/web.config -------------------------------------------------------------------------------- /UniversityManagementSystem/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Web.Debug.config -------------------------------------------------------------------------------- /UniversityManagementSystem/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Web.Release.config -------------------------------------------------------------------------------- /UniversityManagementSystem/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/Web.config -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Mvc.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.Deployment.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.Deployment.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.Razor.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.Razor.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/System.Web.Webpages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/System.Web.Webpages.xml -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/UniversityManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/UniversityManagementSystem.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/UniversityManagementSystem.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/UniversityManagementSystem.dll.config -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/UniversityManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/UniversityManagementSystem.pdb -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/VBCSCompiler.exe -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/csc.exe -------------------------------------------------------------------------------- /UniversityManagementSystem/bin/roslyn/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/bin/roslyn/vbc.exe -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/UniversityManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/obj/Debug/UniversityManagementSystem.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/UniversityManagementSystem.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/obj/Debug/UniversityManagementSystem.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/UniversityManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/obj/Debug/UniversityManagementSystem.dll -------------------------------------------------------------------------------- /UniversityManagementSystem/obj/Debug/UniversityManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/obj/Debug/UniversityManagementSystem.pdb -------------------------------------------------------------------------------- /UniversityManagementSystem/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/UniversityManagementSystem/packages.config -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/build/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/build/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/content/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/content/web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/content/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/content/web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/build/Microsoft.Net.Compilers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/build/Microsoft.Net.Compilers.props -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/csc.exe -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/vbc.exe -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.Validation.1.15.1/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.15.1/jQuery.Validation.1.15.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/jQuery.Validation.1.15.1/jQuery.Validation.1.15.1.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaifulcsse/University-Management-System/HEAD/packages/repositories.config --------------------------------------------------------------------------------