├── .gitattributes ├── .gitignore ├── SchoolManagementApi.sln └── SchoolManagementApi ├── Context └── ApplicationDbContext.cs ├── Controllers ├── AdminController.cs ├── StudentController.cs ├── TeacherController.cs └── WeatherForecastController.cs ├── Migrations ├── 20240912103618_te.Designer.cs ├── 20240912103618_te.cs ├── 20240912104745_tes.Designer.cs ├── 20240912104745_tes.cs ├── 20240912105033_t.Designer.cs ├── 20240912105033_t.cs ├── 20240913094726_event.Designer.cs ├── 20240913094726_event.cs ├── 20240913113556_subject.Designer.cs ├── 20240913113556_subject.cs ├── 20240913113735_subjects.Designer.cs ├── 20240913113735_subjects.cs ├── 20240914085900_timetable.Designer.cs ├── 20240914085900_timetable.cs ├── 20240914111838_time.Designer.cs ├── 20240914111838_time.cs ├── 20240914112150_times.Designer.cs ├── 20240914112150_times.cs ├── 20240914183219_change.Designer.cs ├── 20240914183219_change.cs ├── 20240915072817_frees.Designer.cs ├── 20240915072817_frees.cs ├── 20240915085424_freesstatus.Designer.cs ├── 20240915085424_freesstatus.cs ├── 20240915090050_freesstat.Designer.cs ├── 20240915090050_freesstat.cs ├── 20240915140007_assigment.Designer.cs ├── 20240915140007_assigment.cs ├── 20240915151718_Attandance.Designer.cs ├── 20240915151718_Attandance.cs └── ApplicationDbContextModelSnapshot.cs ├── Model ├── AddLibrarian.cs ├── AddStudent.cs ├── AddTeacher.cs ├── AssignmentSubmission.cs ├── AssignmentSubmissionViewModel.cs ├── AssignmentViewModel.cs ├── Assignments.cs ├── Attendance.cs ├── Event.cs ├── StudentRequest.cs ├── Subject.cs ├── TeacherLeaveRequest.cs ├── Timetable.cs ├── UpdateFeeStatusModel.cs └── Users.cs ├── Program.cs ├── Properties └── launchSettings.json ├── SchoolManagementApi.csproj ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/.gitignore -------------------------------------------------------------------------------- /SchoolManagementApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi.sln -------------------------------------------------------------------------------- /SchoolManagementApi/Context/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Context/ApplicationDbContext.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Controllers/AdminController.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Controllers/StudentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Controllers/StudentController.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Controllers/TeacherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Controllers/TeacherController.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912103618_te.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912103618_te.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912103618_te.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912103618_te.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912104745_tes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912104745_tes.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912104745_tes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912104745_tes.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912105033_t.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912105033_t.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240912105033_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240912105033_t.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913094726_event.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913094726_event.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913094726_event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913094726_event.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913113556_subject.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913113556_subject.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913113556_subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913113556_subject.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913113735_subjects.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913113735_subjects.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240913113735_subjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240913113735_subjects.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914085900_timetable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914085900_timetable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914085900_timetable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914085900_timetable.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914111838_time.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914111838_time.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914111838_time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914111838_time.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914112150_times.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914112150_times.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914112150_times.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914112150_times.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914183219_change.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914183219_change.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240914183219_change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240914183219_change.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915072817_frees.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915072817_frees.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915072817_frees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915072817_frees.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915085424_freesstatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915085424_freesstatus.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915085424_freesstatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915085424_freesstatus.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915090050_freesstat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915090050_freesstat.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915090050_freesstat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915090050_freesstat.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915140007_assigment.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915140007_assigment.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915140007_assigment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915140007_assigment.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915151718_Attandance.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915151718_Attandance.Designer.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/20240915151718_Attandance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/20240915151718_Attandance.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AddLibrarian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AddLibrarian.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AddStudent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AddStudent.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AddTeacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AddTeacher.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AssignmentSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AssignmentSubmission.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AssignmentSubmissionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AssignmentSubmissionViewModel.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/AssignmentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/AssignmentViewModel.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Assignments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Assignments.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Attendance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Attendance.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Event.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/StudentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/StudentRequest.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Subject.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/TeacherLeaveRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/TeacherLeaveRequest.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Timetable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Timetable.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/UpdateFeeStatusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/UpdateFeeStatusModel.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Model/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Model/Users.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Program.cs -------------------------------------------------------------------------------- /SchoolManagementApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /SchoolManagementApi/SchoolManagementApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/SchoolManagementApi.csproj -------------------------------------------------------------------------------- /SchoolManagementApi/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/WeatherForecast.cs -------------------------------------------------------------------------------- /SchoolManagementApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/appsettings.Development.json -------------------------------------------------------------------------------- /SchoolManagementApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasadmhasal/SchoolManagementApi/HEAD/SchoolManagementApi/appsettings.json --------------------------------------------------------------------------------