├── .editorconfig ├── .gitattributes ├── .gitignore ├── AccountInitializer.cs ├── LeLeInstitute.sln └── LeLeInstitute ├── .config └── dotnet-tools.json ├── Controllers ├── AccountController.cs ├── CourseController.cs ├── DepartmentController.cs ├── HomeController.cs ├── InstructorController.cs ├── RoleController.cs ├── StudentController.cs └── UserController.cs ├── DAL ├── AccountInitialize.cs ├── ClassConfig.cs ├── DbInitializer.cs └── LeLeContext.cs ├── LeLeInstitute.csproj ├── Migrations ├── 20200112212319_DbInit.Designer.cs ├── 20200112212319_DbInit.cs └── LeLeContextModelSnapshot.cs ├── Models ├── Course.cs ├── CourseAssignment.cs ├── Department.cs ├── Enrollment.cs ├── Instructor.cs ├── OfficeAssignment.cs └── Student.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Services ├── IRepository │ ├── ICourseAssignmentRepository.cs │ ├── ICourseRepository.cs │ ├── IDepartmentRepository.cs │ ├── IEnrollmentRepository.cs │ ├── IInstructorRepository.cs │ ├── IRepository.cs │ └── IStudentRepository.cs └── Repository │ ├── CourseAssignmentRespository.cs │ ├── CourseRepository.cs │ ├── DepartmentRepository.cs │ ├── EnrollmentRepository.cs │ ├── InstructorRepository.cs │ ├── Repository.cs │ └── StudentRepository.cs ├── Startup.cs ├── ViewModels ├── AssignedCourseData.cs ├── CreateViewModel.cs ├── EditInstructorViewModel.cs ├── IntructorViewModel.cs ├── LoginViewModel.cs ├── RegisterViewModel.cs ├── RoleViewModel.cs ├── StudentViewModel.cs └── UserViewModel.cs ├── Views ├── Account │ ├── AccessDenied.cshtml │ ├── Index.cshtml │ ├── Login.cshtml │ └── Register.cshtml ├── Course │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Department │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Home │ └── Index.cshtml ├── Instructor │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Role │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Shared │ ├── Partials │ │ └── _GroupButtonPartial.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── Student │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── User │ ├── Details.cshtml │ └── Index.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── libman.json └── wwwroot └── lib ├── bootstrap └── dist │ ├── css │ └── bootstrap.min.css │ └── js │ ├── bootstrap.bundle.min.js │ └── bootstrap.min.js ├── jquery-validate ├── additional-methods.js ├── additional-methods.min.js ├── jquery.validate.js ├── jquery.validate.min.js └── localization │ ├── messages_ar.js │ ├── messages_ar.min.js │ ├── messages_az.js │ ├── messages_az.min.js │ ├── messages_bg.js │ ├── messages_bg.min.js │ ├── messages_bn_BD.js │ ├── messages_bn_BD.min.js │ ├── messages_ca.js │ ├── messages_ca.min.js │ ├── messages_cs.js │ ├── messages_cs.min.js │ ├── messages_da.js │ ├── messages_da.min.js │ ├── messages_de.js │ ├── messages_de.min.js │ ├── messages_el.js │ ├── messages_el.min.js │ ├── messages_es.js │ ├── messages_es.min.js │ ├── messages_es_AR.js │ ├── messages_es_AR.min.js │ ├── messages_es_PE.js │ ├── messages_es_PE.min.js │ ├── messages_et.js │ ├── messages_et.min.js │ ├── messages_eu.js │ ├── messages_eu.min.js │ ├── messages_fa.js │ ├── messages_fa.min.js │ ├── messages_fi.js │ ├── messages_fi.min.js │ ├── messages_fr.js │ ├── messages_fr.min.js │ ├── messages_ge.js │ ├── messages_ge.min.js │ ├── messages_gl.js │ ├── messages_gl.min.js │ ├── messages_he.js │ ├── messages_he.min.js │ ├── messages_hr.js │ ├── messages_hr.min.js │ ├── messages_hu.js │ ├── messages_hu.min.js │ ├── messages_hy_AM.js │ ├── messages_hy_AM.min.js │ ├── messages_id.js │ ├── messages_id.min.js │ ├── messages_is.js │ ├── messages_is.min.js │ ├── messages_it.js │ ├── messages_it.min.js │ ├── messages_ja.js │ ├── messages_ja.min.js │ ├── messages_ka.js │ ├── messages_ka.min.js │ ├── messages_kk.js │ ├── messages_kk.min.js │ ├── messages_ko.js │ ├── messages_ko.min.js │ ├── messages_lt.js │ ├── messages_lt.min.js │ ├── messages_lv.js │ ├── messages_lv.min.js │ ├── messages_mk.js │ ├── messages_mk.min.js │ ├── messages_my.js │ ├── messages_my.min.js │ ├── messages_nl.js │ ├── messages_nl.min.js │ ├── messages_no.js │ ├── messages_no.min.js │ ├── messages_pl.js │ ├── messages_pl.min.js │ ├── messages_pt_BR.js │ ├── messages_pt_BR.min.js │ ├── messages_pt_PT.js │ ├── messages_pt_PT.min.js │ ├── messages_ro.js │ ├── messages_ro.min.js │ ├── messages_ru.js │ ├── messages_ru.min.js │ ├── messages_sd.js │ ├── messages_sd.min.js │ ├── messages_si.js │ ├── messages_si.min.js │ ├── messages_sk.js │ ├── messages_sk.min.js │ ├── messages_sl.js │ ├── messages_sl.min.js │ ├── messages_sr.js │ ├── messages_sr.min.js │ ├── messages_sr_lat.js │ ├── messages_sr_lat.min.js │ ├── messages_sv.js │ ├── messages_sv.min.js │ ├── messages_th.js │ ├── messages_th.min.js │ ├── messages_tj.js │ ├── messages_tj.min.js │ ├── messages_tr.js │ ├── messages_tr.min.js │ ├── messages_uk.js │ ├── messages_uk.min.js │ ├── messages_ur.js │ ├── messages_ur.min.js │ ├── messages_vi.js │ ├── messages_vi.min.js │ ├── messages_zh.js │ ├── messages_zh.min.js │ ├── messages_zh_TW.js │ ├── messages_zh_TW.min.js │ ├── methods_de.js │ ├── methods_de.min.js │ ├── methods_es_CL.js │ ├── methods_es_CL.min.js │ ├── methods_fi.js │ ├── methods_fi.min.js │ ├── methods_it.js │ ├── methods_it.min.js │ ├── methods_nl.js │ ├── methods_nl.min.js │ ├── methods_pt.js │ └── methods_pt.min.js ├── jquery-validation-unobtrusive ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js └── jquery ├── core.js ├── jquery.js ├── jquery.min.js ├── jquery.min.map ├── jquery.slim.js ├── jquery.slim.min.js └── jquery.slim.min.map /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/.gitignore -------------------------------------------------------------------------------- /AccountInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/AccountInitializer.cs -------------------------------------------------------------------------------- /LeLeInstitute.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute.sln -------------------------------------------------------------------------------- /LeLeInstitute/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/.config/dotnet-tools.json -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/AccountController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/CourseController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/DepartmentController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/HomeController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/InstructorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/InstructorController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/RoleController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/StudentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/StudentController.cs -------------------------------------------------------------------------------- /LeLeInstitute/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Controllers/UserController.cs -------------------------------------------------------------------------------- /LeLeInstitute/DAL/AccountInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/DAL/AccountInitialize.cs -------------------------------------------------------------------------------- /LeLeInstitute/DAL/ClassConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/DAL/ClassConfig.cs -------------------------------------------------------------------------------- /LeLeInstitute/DAL/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/DAL/DbInitializer.cs -------------------------------------------------------------------------------- /LeLeInstitute/DAL/LeLeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/DAL/LeLeContext.cs -------------------------------------------------------------------------------- /LeLeInstitute/LeLeInstitute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/LeLeInstitute.csproj -------------------------------------------------------------------------------- /LeLeInstitute/Migrations/20200112212319_DbInit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Migrations/20200112212319_DbInit.Designer.cs -------------------------------------------------------------------------------- /LeLeInstitute/Migrations/20200112212319_DbInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Migrations/20200112212319_DbInit.cs -------------------------------------------------------------------------------- /LeLeInstitute/Migrations/LeLeContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Migrations/LeLeContextModelSnapshot.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/Course.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/CourseAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/CourseAssignment.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/Department.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/Enrollment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/Enrollment.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/Instructor.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/OfficeAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/OfficeAssignment.cs -------------------------------------------------------------------------------- /LeLeInstitute/Models/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Models/Student.cs -------------------------------------------------------------------------------- /LeLeInstitute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Program.cs -------------------------------------------------------------------------------- /LeLeInstitute/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Properties/launchSettings.json -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/ICourseAssignmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/ICourseAssignmentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/ICourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/ICourseRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/IDepartmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/IDepartmentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/IEnrollmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/IEnrollmentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/IInstructorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/IInstructorRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/IRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/IRepository/IStudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/IRepository/IStudentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/CourseAssignmentRespository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/CourseAssignmentRespository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/CourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/CourseRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/DepartmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/DepartmentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/EnrollmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/EnrollmentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/InstructorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/InstructorRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/Repository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Services/Repository/StudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Services/Repository/StudentRepository.cs -------------------------------------------------------------------------------- /LeLeInstitute/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Startup.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/AssignedCourseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/AssignedCourseData.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/CreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/CreateViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/EditInstructorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/EditInstructorViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/IntructorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/IntructorViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/RoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/RoleViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/StudentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/StudentViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /LeLeInstitute/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Account/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Account/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Course/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Course/Create.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Course/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Course/Delete.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Course/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Course/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Course/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Course/Edit.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Course/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Course/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Department/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Department/Create.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Department/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Department/Delete.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Department/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Department/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Department/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Department/Edit.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Department/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Department/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Instructor/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Instructor/Create.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Instructor/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Instructor/Delete.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Instructor/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Instructor/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Instructor/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Instructor/Edit.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Instructor/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Instructor/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Role/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Role/Create.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Role/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Role/Delete.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Role/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Role/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Role/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Role/Edit.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Role/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Role/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Shared/Partials/_GroupButtonPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Shared/Partials/_GroupButtonPartial.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Student/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Student/Create.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Student/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Student/Delete.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Student/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Student/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Student/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Student/Edit.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/Student/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/Student/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/User/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/User/Details.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/User/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/User/Index.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LeLeInstitute/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/appsettings.Development.json -------------------------------------------------------------------------------- /LeLeInstitute/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/appsettings.json -------------------------------------------------------------------------------- /LeLeInstitute/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/libman.json -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/additional-methods.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/additional-methods.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/jquery.validate.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/jquery.validate.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ar.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ar.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_az.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_az.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_az.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bg.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bg.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bn_BD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_bn_BD.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ca.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ca.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_cs.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_cs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_cs.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_da.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_da.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_de.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_de.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_el.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_el.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_AR.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_AR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_AR.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_PE.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_PE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_es_PE.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_et.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_et.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_et.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_eu.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_eu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_eu.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fa.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fa.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fi.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fi.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fr.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_fr.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ge.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ge.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_gl.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_gl.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_he.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_he.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hr.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hr.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hu.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hu.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hy_AM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_hy_AM.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_id.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_id.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_id.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_is.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_is.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_is.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_it.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_it.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ja.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ja.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ka.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ka.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ka.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_kk.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_kk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_kk.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ko.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ko.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lt.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lt.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lv.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_lv.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_mk.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_mk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_mk.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_my.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_my.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_my.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_nl.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_nl.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_no.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_no.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pl.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pl.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_BR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_BR.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_PT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_pt_PT.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ro.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ro.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ru.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ru.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sd.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sd.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_si.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_si.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_si.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sk.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sk.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sl.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sl.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr_lat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sr_lat.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sv.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_sv.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_th.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_th.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tj.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tj.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tj.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tr.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_tr.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_uk.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_uk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_uk.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ur.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ur.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_ur.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_vi.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_vi.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh_TW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/messages_zh_TW.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_de.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_de.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_es_CL.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_es_CL.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_fi.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_fi.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_it.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_it.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_nl.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_nl.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_pt.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validate/localization/methods_pt.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/core.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /LeLeInstitute/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/InstituteManagement/HEAD/LeLeInstitute/wwwroot/lib/jquery/jquery.slim.min.map --------------------------------------------------------------------------------