├── .gitignore ├── .vs ├── ProjectEvaluation │ ├── schoolmanagmentcleanarchitecture.metadata.v8.bin │ ├── schoolmanagmentcleanarchitecture.projects.v8.bin │ └── schoolmanagmentcleanarchitecture.strings.v8.bin └── SchoolManagmentCleanArchitecture │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── FileContentIndex │ ├── 100c1c05-652f-4fe8-b5f6-cec2d2cb7a0f.vsidx │ ├── 3b32ac73-f27d-474f-9fb1-af49a9d4787a.vsidx │ ├── 54105e6b-2fe1-4e4a-9cf4-4f1940e2217c.vsidx │ ├── 6dded1d2-691b-4ca4-8a81-39451d57b90d.vsidx │ └── deb0b2e0-e2de-4397-b4b8-06759f78d877.vsidx │ ├── config │ └── applicationhost.config │ └── v17 │ ├── .futdcache.v2 │ ├── .suo │ ├── DocumentLayout.json │ └── HierarchyCache.v1.txt ├── README.md ├── SchoolManagment.Api.postman_collection.json ├── SchoolManagment.Api ├── Bases │ └── AppControllerBase.cs ├── Controllers │ ├── ApplicationUserController.cs │ ├── AuthenticationController.cs │ ├── AuthorizationController.cs │ ├── DepartmentController.cs │ ├── EmailController.cs │ ├── InstructorController.cs │ ├── StudentController.cs │ └── SubjectController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SchoolManagment.Api.csproj ├── SchoolManagment.Api.csproj.user ├── SchoolManagment.Api.http ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Ar │ │ └── SchoolManagment.Core.resources.dll │ │ ├── AutoMapper.dll │ │ ├── Azure.Core.dll │ │ ├── Azure.Identity.dll │ │ ├── En │ │ └── SchoolManagment.Core.resources.dll │ │ ├── FluentValidation.DependencyInjectionExtensions.dll │ │ ├── FluentValidation.dll │ │ ├── Humanizer.dll │ │ ├── MediatR.Contracts.dll │ │ ├── MediatR.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.SqlServer.Server.dll │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── Mono.TextTemplating.dll │ │ ├── SchoolManagment.Api.deps.json │ │ ├── SchoolManagment.Api.dll │ │ ├── SchoolManagment.Api.exe │ │ ├── SchoolManagment.Api.pdb │ │ ├── SchoolManagment.Api.runtimeconfig.json │ │ ├── SchoolManagment.Core.dll │ │ ├── SchoolManagment.Core.pdb │ │ ├── SchoolManagment.Data.dll │ │ ├── SchoolManagment.Data.pdb │ │ ├── SchoolManagment.Infrastructure.dll │ │ ├── SchoolManagment.Infrastructure.pdb │ │ ├── SchoolManagment.Services.dll │ │ ├── SchoolManagment.Services.pdb │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.CodeDom.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Memory.Data.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── runtimes │ │ ├── unix │ │ │ └── lib │ │ │ │ └── net6.0 │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ └── System.Drawing.Common.dll │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ │ └── lib │ │ │ └── net6.0 │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ └── System.Windows.Extensions.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll ├── obj │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── SchoolMa.D8EA3E90.Up2Date │ │ │ ├── SchoolManagment.Api.AssemblyInfo.cs │ │ │ ├── SchoolManagment.Api.AssemblyInfoInputs.cache │ │ │ ├── SchoolManagment.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── SchoolManagment.Api.GlobalUsings.g.cs │ │ │ ├── SchoolManagment.Api.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── SchoolManagment.Api.assets.cache │ │ │ ├── SchoolManagment.Api.csproj.AssemblyReference.cache │ │ │ ├── SchoolManagment.Api.csproj.BuildWithSkipAnalyzers │ │ │ ├── SchoolManagment.Api.csproj.CoreCompileInputs.cache │ │ │ ├── SchoolManagment.Api.csproj.FileListAbsolute.txt │ │ │ ├── SchoolManagment.Api.dll │ │ │ ├── SchoolManagment.Api.genruntimeconfig.cache │ │ │ ├── SchoolManagment.Api.pdb │ │ │ ├── SchoolManagment.Api.sourcelink.json │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── SchoolManagment.Api.dll │ │ │ ├── refint │ │ │ └── SchoolManagment.Api.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.SchoolManagment.Api.props │ │ │ ├── msbuild.buildMultiTargeting.SchoolManagment.Api.props │ │ │ └── msbuild.buildTransitive.SchoolManagment.Api.props │ ├── SchoolManagment.Api.csproj.nuget.dgspec.json │ ├── SchoolManagment.Api.csproj.nuget.g.props │ ├── SchoolManagment.Api.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── wwwroot │ ├── InstructorImages │ ├── 0a5efd7aace044b89ca62dcbbfdf1564.jpg │ ├── 39588d6e43a24a73b561430cca2efeb7.jpg │ ├── 7c3960d8579542209be2d81b58817a54.jpg │ └── d250102efd77412abb58cb59566586b8.jpg │ ├── StudentImages │ ├── 93c6759b0f4d43b6a451f60a7268c558.png │ └── ac0fd933314644959540a7e0bea6689e.png │ └── UserImages │ └── f9bbaad99140445094d1021a82e68ded.png ├── SchoolManagment.Core ├── Bahaviors │ └── ValidationBehavior.cs ├── Bases │ ├── Response.cs │ └── ResponseHandler.cs ├── Features │ ├── AppUser │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ └── UserCommandHandler.cs │ │ │ ├── Models │ │ │ │ ├── AddUserCommand.cs │ │ │ │ ├── DeleteUserCommand.cs │ │ │ │ ├── UpdateUserCommand.cs │ │ │ │ └── UpdateUserPasswordCommand.cs │ │ │ └── Validations │ │ │ │ ├── AddUserValidator.cs │ │ │ │ ├── UpdateUserPasswordValidator.cs │ │ │ │ └── UpdateUserValidator.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ └── UserQueryHandler.cs │ │ │ ├── Models │ │ │ ├── GetCurrentUserQuery.cs │ │ │ ├── GetUserByIdQuery.cs │ │ │ └── GetUserlListQuery.cs │ │ │ └── Responses │ │ │ ├── GetCurrentUserResponse.cs │ │ │ ├── GetUserByIdResponse.cs │ │ │ └── GetUserListResponse.cs │ ├── Authentication │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ └── AuthenticationHandler.cs │ │ │ ├── Models │ │ │ │ ├── RefreshTokenCommand.cs │ │ │ │ ├── ResetPasswordCommand.cs │ │ │ │ ├── SendResetPasswordCommand.cs │ │ │ │ └── SignInCommand.cs │ │ │ └── Validations │ │ │ │ ├── ResetPasswordValidator.cs │ │ │ │ └── SignInvalidator.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ └── AuthenticationQueryHandler.cs │ │ │ ├── Model │ │ │ ├── AuthorizeUserQuery.cs │ │ │ ├── ConfirmEmailQuery.cs │ │ │ └── ResetPasswordQuery.cs │ │ │ └── Validators │ │ │ └── ConfirmEmailValidator.cs │ ├── Authorization │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ ├── ClaimsCommandHandler.cs │ │ │ │ └── RoleCommandHandler.cs │ │ │ ├── Models │ │ │ │ ├── AddRoleCommand.cs │ │ │ │ ├── DeleteRoleCommand.cs │ │ │ │ ├── EditRoleCommand.cs │ │ │ │ ├── UpdateUserClaimsCommand.cs │ │ │ │ └── UpdateUserRolesCommand.cs │ │ │ └── Validators │ │ │ │ ├── AddRoleValidator.cs │ │ │ │ └── EditRoleValidator.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ ├── ClaimsQueryHandlerd.cs │ │ │ └── RoleQueryHandler.cs │ │ │ ├── Model │ │ │ ├── GetRoleByIdQuery.cs │ │ │ ├── GetRolesList.cs │ │ │ ├── ManageUserClaimsQuery.cs │ │ │ └── ManageUserRolesQuery.cs │ │ │ └── Response │ │ │ └── GetRolesListResponse.cs │ ├── Departments │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ └── DepartmentCommandHandler.cs │ │ │ ├── Models │ │ │ │ ├── CreateDepartmentCommand.cs │ │ │ │ ├── DeleteDepartmentCommand.cs │ │ │ │ └── UpdateDepartmentCommand.cs │ │ │ └── Validations │ │ │ │ ├── CreateDepartmentValidation.cs │ │ │ │ └── UpdateDepartmentValidation.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ └── DepartmentQueryHandler.cs │ │ │ ├── Models │ │ │ ├── GetAllDepartmentsQuery.cs │ │ │ ├── GetDepartmentByIdQuery.cs │ │ │ ├── GetDepartmentStudentCountListQuery.cs │ │ │ ├── GetDepartmentStudentCountQuery.cs │ │ │ └── GetTop3InstructorSalariesByDeptQuery.cs │ │ │ └── Responses │ │ │ ├── GetAllDepartmentsResponse.cs │ │ │ ├── GetDepartmentByIdResponse.cs │ │ │ ├── GetDepartmentStudentCountListResponse.cs │ │ │ ├── InstructorResponse.cs │ │ │ ├── InstructorsSalaryDto.cs │ │ │ ├── StudentResponse.cs │ │ │ └── SubjectResponse.cs │ ├── Email │ │ └── Commands │ │ │ ├── Handler │ │ │ └── EmailCommandHandler.cs │ │ │ ├── Models │ │ │ └── SendEmailCommand.cs │ │ │ └── Validations │ │ │ └── SendEmailCommandValidator.cs │ ├── Instructor │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ └── InstructorCommandHandler.cs │ │ │ ├── Models │ │ │ │ ├── AddInstructorCommand.cs │ │ │ │ └── DeleteInstructorCommand.cs │ │ │ └── Validators │ │ │ │ └── AddInstructorValidator.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ └── InstructorQueryHandler.cs │ │ │ ├── Models │ │ │ ├── GetAllInstructorsQuery.cs │ │ │ └── GetInstructorByIdQuery.cs │ │ │ └── Response │ │ │ └── GetInstructorResponse.cs │ ├── Students │ │ ├── Commands │ │ │ ├── Handler │ │ │ │ └── StudentCommandHandler.cs │ │ │ ├── Models │ │ │ │ ├── AddStudentCommand.cs │ │ │ │ ├── AddStudentToDepartmentCommand.cs │ │ │ │ ├── DeleteStudentCommand.cs │ │ │ │ └── EditStudentCommand.cs │ │ │ └── Validations │ │ │ │ ├── AddStudentCommandValidator.cs │ │ │ │ └── EditStudentCommandValidator.cs │ │ └── Queries │ │ │ ├── Handler │ │ │ └── StudentQueryHandler.cs │ │ │ ├── Models │ │ │ ├── GetStudentByIdQuery.cs │ │ │ ├── GetStudentsQuery.cs │ │ │ └── GetStudentsWithPaginationQuery.cs │ │ │ └── Responses │ │ │ ├── GetSingleStudentResponse.cs │ │ │ └── GetStudentsResponse.cs │ └── Subject │ │ ├── Commands │ │ ├── Handler │ │ │ └── SubjectCommandHandler.cs │ │ ├── Models │ │ │ ├── AddInstructorToSubjectCommand.cs │ │ │ ├── AddSubjectCommand.cs │ │ │ ├── AddSubjectToDepartmentCommand.cs │ │ │ ├── DeleteSubjectCommand.cs │ │ │ └── EditSubjectCommand.cs │ │ └── Validation │ │ │ ├── AddSubjectCommandValidators.cs │ │ │ └── EditSubjectCommandValidators.cs │ │ ├── Queries │ │ ├── Handler │ │ │ └── SubjectQueryHandler.cs │ │ └── Models │ │ │ ├── GetNumberOfStudentsForSubjectsQuery.cs │ │ │ ├── GetSubjectByIdQuery.cs │ │ │ ├── GetSubjectWithDepartmentsQuery.cs │ │ │ └── GetTopStudentInEachSubject.cs │ │ └── Responses │ │ ├── GetSubjectByIdResponse.cs │ │ └── GetSubjectWithDepartments.cs ├── Filters │ └── AuthAttribute.cs ├── Mapping │ ├── AppUser │ │ ├── ApplicationUserProfile.cs │ │ ├── CommandsMapping │ │ │ ├── AddUserCommandMapping.cs │ │ │ └── UpdateUserCommandMapping.cs │ │ └── QueriesMapping │ │ │ ├── ApplicationUserProfile.cs │ │ │ ├── GetUserByIdMapping.cs │ │ │ └── GetUserListQueryMapping.cs │ ├── Departments │ │ ├── CommandMapping │ │ │ ├── CreateDepartmentCommandMapping.cs │ │ │ └── UpdateDepartmentCommandMapping.cs │ │ ├── DepartmentMapping.cs │ │ └── QueryMapping │ │ │ ├── GetAllDepartmentsQueryMapping.cs │ │ │ ├── GetDepartmentByIdQueryMapping.cs │ │ │ ├── GetDepartmentStudentsCountQueryMapping.cs │ │ │ └── GetTop3InstructorSalariesByDeptQueryMapping.cs │ ├── Instructor │ │ ├── Commands │ │ │ └── AddInstructorMapping.cs │ │ ├── InstructorMapping.cs │ │ └── Queries │ │ │ └── GetInstructorQueryMapping.cs │ ├── Roles │ │ ├── QueryMapping │ │ │ └── GetRolesListMapping.cs │ │ └── RoleMapping.cs │ ├── Students │ │ ├── CommandsMapping │ │ │ ├── AddStudentCommandMapping.cs │ │ │ └── EditStudentCommandMapping.cs │ │ ├── QueryMapping │ │ │ ├── GetStudentByIdQueryMapping.cs │ │ │ ├── GetStudentsQueryMapping.cs │ │ │ └── GetStudentsWithPaginationQueryMapping.cs │ │ └── StudentProfile.cs │ └── Subject │ │ ├── CommandMapping │ │ ├── AddSubjectCommandMapping.cs │ │ └── EditSubjectCommandMapping.cs │ │ ├── QueryMapping │ │ └── GetSubjectWithDepartmentMapping.cs │ │ └── SubjectProfile.cs ├── Middleware │ └── ErrorHandlerMiddleware.cs ├── ModuleCoreDependencies.cs ├── SchoolManagment.Core.csproj ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Ar │ │ └── SchoolManagment.Core.resources.dll │ │ ├── En │ │ └── SchoolManagment.Core.resources.dll │ │ ├── SchoolManagment.Core.deps.json │ │ ├── SchoolManagment.Core.dll │ │ ├── SchoolManagment.Core.pdb │ │ ├── SchoolManagment.Data.dll │ │ ├── SchoolManagment.Data.pdb │ │ ├── SchoolManagment.Infrastructure.dll │ │ ├── SchoolManagment.Infrastructure.pdb │ │ ├── SchoolManagment.Services.dll │ │ └── SchoolManagment.Services.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Ar │ │ └── SchoolManagment.Core.resources.dll │ │ ├── En │ │ └── SchoolManagment.Core.resources.dll │ │ ├── SchoolMa.3E8D021B.Up2Date │ │ ├── SchoolManagment.Core.AssemblyInfo.cs │ │ ├── SchoolManagment.Core.AssemblyInfoInputs.cache │ │ ├── SchoolManagment.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SchoolManagment.Core.GlobalUsings.g.cs │ │ ├── SchoolManagment.Core.Resources.SharedResource.Ar.resources │ │ ├── SchoolManagment.Core.Resources.SharedResource.En.resources │ │ ├── SchoolManagment.Core.assets.cache │ │ ├── SchoolManagment.Core.csproj.AssemblyReference.cache │ │ ├── SchoolManagment.Core.csproj.BuildWithSkipAnalyzers │ │ ├── SchoolManagment.Core.csproj.CoreCompileInputs.cache │ │ ├── SchoolManagment.Core.csproj.FileListAbsolute.txt │ │ ├── SchoolManagment.Core.csproj.GenerateResource.cache │ │ ├── SchoolManagment.Core.dll │ │ ├── SchoolManagment.Core.pdb │ │ ├── SchoolManagment.Core.sourcelink.json │ │ ├── ref │ │ └── SchoolManagment.Core.dll │ │ └── refint │ │ └── SchoolManagment.Core.dll │ ├── SchoolManagment.Core.csproj.nuget.dgspec.json │ ├── SchoolManagment.Core.csproj.nuget.g.props │ ├── SchoolManagment.Core.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── SchoolManagment.Data ├── AppMetaData │ └── Router.cs ├── Common │ └── GenerateLocalizableEntity.cs ├── Entities │ ├── Department.cs │ ├── DepartmentSubject.cs │ ├── Functions │ │ └── GetTop3InstructorSalariesByDeptFunction.cs │ ├── Identity │ │ ├── ApplicationUser.cs │ │ ├── Role.cs │ │ └── UserRefreshToken.cs │ ├── Instructor.cs │ ├── Procedures │ │ └── DepartmentTotalStudentsProc.cs │ ├── Student.cs │ ├── StudentSubject.cs │ ├── Subject.cs │ ├── SubjectInsturctor.cs │ └── Views │ │ └── DepartmentStudentsCount.cs ├── Helper │ ├── EmailSetting.cs │ ├── Encryptor.cs │ ├── JWT.cs │ └── RefreshToken.cs ├── Requests │ ├── ClaimsStore.cs │ ├── EditRoleRequest.cs │ ├── UpdateUserClaimsRequest.cs │ └── UpdateUserRolesRequest.cs ├── Resources │ ├── SharedResource.Ar.resx │ ├── SharedResource.En.resx │ ├── SharedResource.cs │ └── SharedResourcesKeys.cs ├── Responses │ ├── GetNumberOfStudentsForSubject.cs │ ├── GetTopStudentInEachSubjectResponse.cs │ ├── JwtAuthModel.cs │ ├── ManageUserClaimsResponse.cs │ └── ManageUserRolesResponse.cs ├── SchoolManagment.Data.csproj ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── SchoolManagment.Data.deps.json │ │ ├── SchoolManagment.Data.dll │ │ └── SchoolManagment.Data.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── SchoolManagment.Data.AssemblyInfo.cs │ │ ├── SchoolManagment.Data.AssemblyInfoInputs.cache │ │ ├── SchoolManagment.Data.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SchoolManagment.Data.GlobalUsings.g.cs │ │ ├── SchoolManagment.Data.assets.cache │ │ ├── SchoolManagment.Data.csproj.BuildWithSkipAnalyzers │ │ ├── SchoolManagment.Data.csproj.CoreCompileInputs.cache │ │ ├── SchoolManagment.Data.csproj.FileListAbsolute.txt │ │ ├── SchoolManagment.Data.dll │ │ ├── SchoolManagment.Data.pdb │ │ ├── SchoolManagment.Data.sourcelink.json │ │ ├── ref │ │ └── SchoolManagment.Data.dll │ │ └── refint │ │ └── SchoolManagment.Data.dll │ ├── SchoolManagment.Data.csproj.nuget.dgspec.json │ ├── SchoolManagment.Data.csproj.nuget.g.props │ ├── SchoolManagment.Data.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── SchoolManagment.Infrastructure ├── Abstracts │ ├── Functions │ │ └── IDepartmentGetTop3SalariesRepository.cs │ ├── Procedures │ │ └── IDepartmentTotalStudentsRepository.cs │ └── Views │ │ └── IViewRepository.cs ├── Configurations │ ├── ApplicationUserConfigurations.cs │ ├── DepartmentConfigurations.cs │ ├── DepartmentSubjectConfigurations.cs │ ├── InstructorConfigurations.cs │ ├── StudentSubjectConfigurations.cs │ └── SubjectInstructorConfigurations.cs ├── Context │ └── ApplicationDbContext.cs ├── InfrastructureBases │ ├── GenericRepository.cs │ ├── IGenericRepository.cs │ └── IUnitOfWork.cs ├── Migrations │ ├── 20240623085548_Initial.Designer.cs │ ├── 20240623085548_Initial.cs │ ├── 20240628113539_ApplyEntitiesNameToArabicAndEnglish.Designer.cs │ ├── 20240628113539_ApplyEntitiesNameToArabicAndEnglish.cs │ ├── 20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.Designer.cs │ ├── 20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.cs │ ├── 20240628133935_EditSubIdFK.Designer.cs │ ├── 20240628133935_EditSubIdFK.cs │ ├── 20240628155114_AddInstructorTableAndOtherRelations.Designer.cs │ ├── 20240628155114_AddInstructorTableAndOtherRelations.cs │ ├── 20240628201035_EditFKsToBeNullable.Designer.cs │ ├── 20240628201035_EditFKsToBeNullable.cs │ ├── 20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.Designer.cs │ ├── 20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.cs │ ├── 20240629112542_EditDepartmentInsIdFK.Designer.cs │ ├── 20240629112542_EditDepartmentInsIdFK.cs │ ├── 20240629113455_EditFKOfStudentsAndDepartmentsTables.Designer.cs │ ├── 20240629113455_EditFKOfStudentsAndDepartmentsTables.cs │ ├── 20240730133656_AddIdentity.Designer.cs │ ├── 20240730133656_AddIdentity.cs │ ├── 20240801011307_AddRefreshTokensTable.Designer.cs │ ├── 20240801011307_AddRefreshTokensTable.cs │ ├── 20240801012003_ModifyRefreshTokenTable.Designer.cs │ ├── 20240801012003_ModifyRefreshTokenTable.cs │ ├── 20240802223010_EditRolesTable.Designer.cs │ ├── 20240802223010_EditRolesTable.cs │ ├── 20240805135537_AddEncryptColumnInUserTable.Designer.cs │ ├── 20240805135537_AddEncryptColumnInUserTable.cs │ ├── 20240806201725_AddImagePathToInstructor.Designer.cs │ ├── 20240806201725_AddImagePathToInstructor.cs │ ├── 20240810200134_EditDepartmentDeleteBehaviors.Designer.cs │ ├── 20240810200134_EditDepartmentDeleteBehaviors.cs │ ├── 20240823123038_AddImagePathColumnToStudentAndApplicationUser.Designer.cs │ ├── 20240823123038_AddImagePathColumnToStudentAndApplicationUser.cs │ ├── 20240826155746_EditApplicationUserTable.Designer.cs │ ├── 20240826155746_EditApplicationUserTable.cs │ ├── 20240826161656_AddLastUpdateColumnInApplicationUserTable.Designer.cs │ ├── 20240826161656_AddLastUpdateColumnInApplicationUserTable.cs │ ├── 20240901173251_tmp.cs │ └── ApplicationDbContextModelSnapshot.cs ├── ModuleInfrastructureDependencies.cs ├── Repositories │ ├── Functions │ │ └── DepartmentGetTop3SalariesRepository.cs │ ├── Procedures │ │ └── DepartmentTotalStudentsRepository.cs │ └── Views │ │ └── DepartmentViewRepository.cs ├── SchoolManagment.Infrastructure.csproj ├── Seeder │ ├── Policies.cs │ ├── RoleSeeder.cs │ ├── Roles.cs │ └── UserSeeder.cs ├── ServiceRegistration.cs ├── Specifications │ ├── BaseSpecification.cs │ ├── Department │ │ └── DepartmentWithSpecifications.cs │ ├── ISpecification.cs │ ├── SpecificationEvaluater.cs │ └── Student │ │ ├── StudentSpecification.cs │ │ └── StudentsWithSpecifications.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── SchoolManagment.Data.dll │ │ ├── SchoolManagment.Data.pdb │ │ ├── SchoolManagment.Infrastructure.deps.json │ │ ├── SchoolManagment.Infrastructure.dll │ │ ├── SchoolManagment.Infrastructure.pdb │ │ └── SchoolManagment.Infrastructure.runtimeconfig.json └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── SchoolMa.0CC1D1C2.Up2Date │ │ ├── SchoolManagment.Infrastructure.AssemblyInfo.cs │ │ ├── SchoolManagment.Infrastructure.AssemblyInfoInputs.cache │ │ ├── SchoolManagment.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SchoolManagment.Infrastructure.GlobalUsings.g.cs │ │ ├── SchoolManagment.Infrastructure.assets.cache │ │ ├── SchoolManagment.Infrastructure.csproj.AssemblyReference.cache │ │ ├── SchoolManagment.Infrastructure.csproj.BuildWithSkipAnalyzers │ │ ├── SchoolManagment.Infrastructure.csproj.CoreCompileInputs.cache │ │ ├── SchoolManagment.Infrastructure.csproj.FileListAbsolute.txt │ │ ├── SchoolManagment.Infrastructure.dll │ │ ├── SchoolManagment.Infrastructure.genruntimeconfig.cache │ │ ├── SchoolManagment.Infrastructure.pdb │ │ ├── SchoolManagment.Infrastructure.sourcelink.json │ │ ├── ref │ │ └── SchoolManagment.Infrastructure.dll │ │ └── refint │ │ └── SchoolManagment.Infrastructure.dll │ ├── SchoolManagment.Infrastructure.csproj.nuget.dgspec.json │ ├── SchoolManagment.Infrastructure.csproj.nuget.g.props │ ├── SchoolManagment.Infrastructure.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── SchoolManagment.Services ├── Abstracts │ ├── IAuthenticationService.cs │ ├── IAuthorizationService.cs │ ├── IDepartmentService.cs │ ├── IEmailService.cs │ ├── IFileService.cs │ ├── IInstructorService.cs │ ├── IStudentService.cs │ ├── ISubjectService.cs │ └── IUserService.cs ├── AuthServices │ ├── Implementations │ │ └── CurrentUserService.cs │ └── Interfaces │ │ └── ICurrentUserService.cs ├── Implementations │ ├── AuthenticationService.cs │ ├── AuthorizationService.cs │ ├── DepartmentService.cs │ ├── EmailService.cs │ ├── FileService.cs │ ├── InstructorService.cs │ ├── StudentService.cs │ ├── SubjectService.cs │ └── UserService.cs ├── ModuleServiceDependencies.cs ├── SchoolManagment.Services.csproj ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── SchoolManagment.Data.dll │ │ ├── SchoolManagment.Data.pdb │ │ ├── SchoolManagment.Infrastructure.dll │ │ ├── SchoolManagment.Infrastructure.pdb │ │ ├── SchoolManagment.Services.deps.json │ │ ├── SchoolManagment.Services.dll │ │ └── SchoolManagment.Services.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── SchoolMa.F4A77896.Up2Date │ │ ├── SchoolManagment.Services.AssemblyInfo.cs │ │ ├── SchoolManagment.Services.AssemblyInfoInputs.cache │ │ ├── SchoolManagment.Services.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SchoolManagment.Services.GlobalUsings.g.cs │ │ ├── SchoolManagment.Services.assets.cache │ │ ├── SchoolManagment.Services.csproj.AssemblyReference.cache │ │ ├── SchoolManagment.Services.csproj.BuildWithSkipAnalyzers │ │ ├── SchoolManagment.Services.csproj.CoreCompileInputs.cache │ │ ├── SchoolManagment.Services.csproj.FileListAbsolute.txt │ │ ├── SchoolManagment.Services.dll │ │ ├── SchoolManagment.Services.pdb │ │ ├── SchoolManagment.Services.sourcelink.json │ │ ├── ref │ │ └── SchoolManagment.Services.dll │ │ └── refint │ │ └── SchoolManagment.Services.dll │ ├── SchoolManagment.Services.csproj.nuget.dgspec.json │ ├── SchoolManagment.Services.csproj.nuget.g.props │ ├── SchoolManagment.Services.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── SchoolManagment.Test ├── CoreTests │ └── Students │ │ └── Queries │ │ └── StudentQueryHandlerTest.cs ├── SchoolManagment.Test.csproj └── UnitTest1.cs └── SchoolManagmentCleanArchitecture.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.metadata.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.metadata.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.projects.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.projects.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.strings.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/ProjectEvaluation/schoolmanagmentcleanarchitecture.strings.v8.bin -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/FileContentIndex/100c1c05-652f-4fe8-b5f6-cec2d2cb7a0f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/FileContentIndex/100c1c05-652f-4fe8-b5f6-cec2d2cb7a0f.vsidx -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/FileContentIndex/3b32ac73-f27d-474f-9fb1-af49a9d4787a.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/FileContentIndex/3b32ac73-f27d-474f-9fb1-af49a9d4787a.vsidx -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/FileContentIndex/54105e6b-2fe1-4e4a-9cf4-4f1940e2217c.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/FileContentIndex/54105e6b-2fe1-4e4a-9cf4-4f1940e2217c.vsidx -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/FileContentIndex/6dded1d2-691b-4ca4-8a81-39451d57b90d.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/FileContentIndex/6dded1d2-691b-4ca4-8a81-39451d57b90d.vsidx -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/FileContentIndex/deb0b2e0-e2de-4397-b4b8-06759f78d877.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/FileContentIndex/deb0b2e0-e2de-4397-b4b8-06759f78d877.vsidx -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/v17/.suo -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/v17/DocumentLayout.json -------------------------------------------------------------------------------- /.vs/SchoolManagmentCleanArchitecture/v17/HierarchyCache.v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/.vs/SchoolManagmentCleanArchitecture/v17/HierarchyCache.v1.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/README.md -------------------------------------------------------------------------------- /SchoolManagment.Api.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api.postman_collection.json -------------------------------------------------------------------------------- /SchoolManagment.Api/Bases/AppControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Bases/AppControllerBase.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/ApplicationUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/ApplicationUserController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/AuthenticationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/AuthenticationController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/AuthorizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/AuthorizationController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/DepartmentController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/EmailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/EmailController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/InstructorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/InstructorController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/StudentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/StudentController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Controllers/SubjectController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Controllers/SubjectController.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Program.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /SchoolManagment.Api/SchoolManagment.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/SchoolManagment.Api.csproj -------------------------------------------------------------------------------- /SchoolManagment.Api/SchoolManagment.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/SchoolManagment.Api.csproj.user -------------------------------------------------------------------------------- /SchoolManagment.Api/SchoolManagment.Api.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/SchoolManagment.Api.http -------------------------------------------------------------------------------- /SchoolManagment.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/appsettings.Development.json -------------------------------------------------------------------------------- /SchoolManagment.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/appsettings.json -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/AutoMapper.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Azure.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Azure.Identity.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/En/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/En/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/FluentValidation.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/MediatR.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/MediatR.Contracts.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/MediatR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/MediatR.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.deps.json -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.exe -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Api.runtimeconfig.json -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Core.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/SchoolManagment.Services.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/appsettings.Development.json -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/appsettings.json -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolMa.D8EA3E90.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.AssemblyInfo.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.assets.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.genruntimeconfig.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.pdb -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/SchoolManagment.Api.sourcelink.json -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/ref/SchoolManagment.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/ref/SchoolManagment.Api.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/refint/SchoolManagment.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/refint/SchoolManagment.Api.dll -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.SchoolManagment.Api.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.SchoolManagment.Api.props -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.SchoolManagment.Api.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.SchoolManagment.Api.props -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.SchoolManagment.Api.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.SchoolManagment.Api.props -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.g.props -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/SchoolManagment.Api.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/project.assets.json -------------------------------------------------------------------------------- /SchoolManagment.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/InstructorImages/0a5efd7aace044b89ca62dcbbfdf1564.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/InstructorImages/0a5efd7aace044b89ca62dcbbfdf1564.jpg -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/InstructorImages/39588d6e43a24a73b561430cca2efeb7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/InstructorImages/39588d6e43a24a73b561430cca2efeb7.jpg -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/InstructorImages/7c3960d8579542209be2d81b58817a54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/InstructorImages/7c3960d8579542209be2d81b58817a54.jpg -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/InstructorImages/d250102efd77412abb58cb59566586b8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/InstructorImages/d250102efd77412abb58cb59566586b8.jpg -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/StudentImages/93c6759b0f4d43b6a451f60a7268c558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/StudentImages/93c6759b0f4d43b6a451f60a7268c558.png -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/StudentImages/ac0fd933314644959540a7e0bea6689e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/StudentImages/ac0fd933314644959540a7e0bea6689e.png -------------------------------------------------------------------------------- /SchoolManagment.Api/wwwroot/UserImages/f9bbaad99140445094d1021a82e68ded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Api/wwwroot/UserImages/f9bbaad99140445094d1021a82e68ded.png -------------------------------------------------------------------------------- /SchoolManagment.Core/Bahaviors/ValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Bahaviors/ValidationBehavior.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Bases/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Bases/Response.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Bases/ResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Bases/ResponseHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Handler/UserCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Handler/UserCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Models/AddUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Models/AddUserCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Models/DeleteUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Models/DeleteUserCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Models/UpdateUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Models/UpdateUserCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Models/UpdateUserPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Models/UpdateUserPasswordCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Validations/AddUserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Validations/AddUserValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Validations/UpdateUserPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Validations/UpdateUserPasswordValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Commands/Validations/UpdateUserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Commands/Validations/UpdateUserValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Handler/UserQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Handler/UserQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Models/GetCurrentUserQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Models/GetCurrentUserQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Models/GetUserByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Models/GetUserByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Models/GetUserlListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Models/GetUserlListQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Responses/GetCurrentUserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Responses/GetCurrentUserResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Responses/GetUserByIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Responses/GetUserByIdResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/AppUser/Queries/Responses/GetUserListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/AppUser/Queries/Responses/GetUserListResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Handler/AuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Handler/AuthenticationHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Models/RefreshTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Models/RefreshTokenCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Models/ResetPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Models/ResetPasswordCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Models/SendResetPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Models/SendResetPasswordCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Models/SignInCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Models/SignInCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Validations/ResetPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Validations/ResetPasswordValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Commands/Validations/SignInvalidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Commands/Validations/SignInvalidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Queries/Handler/AuthenticationQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Queries/Handler/AuthenticationQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Queries/Model/AuthorizeUserQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Queries/Model/AuthorizeUserQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Queries/Model/ConfirmEmailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Queries/Model/ConfirmEmailQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Queries/Model/ResetPasswordQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Queries/Model/ResetPasswordQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authentication/Queries/Validators/ConfirmEmailValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authentication/Queries/Validators/ConfirmEmailValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Handler/ClaimsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Handler/ClaimsCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Handler/RoleCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Handler/RoleCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Models/AddRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Models/AddRoleCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Models/DeleteRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Models/DeleteRoleCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Models/EditRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Models/EditRoleCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Models/UpdateUserClaimsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Models/UpdateUserClaimsCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Models/UpdateUserRolesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Models/UpdateUserRolesCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Validators/AddRoleValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Validators/AddRoleValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Commands/Validators/EditRoleValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Commands/Validators/EditRoleValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Handler/ClaimsQueryHandlerd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Handler/ClaimsQueryHandlerd.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Handler/RoleQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Handler/RoleQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Model/GetRoleByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Model/GetRoleByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Model/GetRolesList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Model/GetRolesList.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Model/ManageUserClaimsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Model/ManageUserClaimsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Model/ManageUserRolesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Model/ManageUserRolesQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Authorization/Queries/Response/GetRolesListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Authorization/Queries/Response/GetRolesListResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Handler/DepartmentCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Handler/DepartmentCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Models/CreateDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Models/CreateDepartmentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Models/DeleteDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Models/DeleteDepartmentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Models/UpdateDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Models/UpdateDepartmentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Validations/CreateDepartmentValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Validations/CreateDepartmentValidation.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Commands/Validations/UpdateDepartmentValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Commands/Validations/UpdateDepartmentValidation.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Handler/DepartmentQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Handler/DepartmentQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Models/GetAllDepartmentsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Models/GetAllDepartmentsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentStudentCountListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentStudentCountListQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentStudentCountQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Models/GetDepartmentStudentCountQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Models/GetTop3InstructorSalariesByDeptQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Models/GetTop3InstructorSalariesByDeptQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/GetAllDepartmentsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/GetAllDepartmentsResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/GetDepartmentByIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/GetDepartmentByIdResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/GetDepartmentStudentCountListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/GetDepartmentStudentCountListResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/InstructorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/InstructorResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/InstructorsSalaryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/InstructorsSalaryDto.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/StudentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/StudentResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Departments/Queries/Responses/SubjectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Departments/Queries/Responses/SubjectResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Email/Commands/Handler/EmailCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Email/Commands/Handler/EmailCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Email/Commands/Models/SendEmailCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Email/Commands/Models/SendEmailCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Email/Commands/Validations/SendEmailCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Email/Commands/Validations/SendEmailCommandValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Commands/Handler/InstructorCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Commands/Handler/InstructorCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Commands/Models/AddInstructorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Commands/Models/AddInstructorCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Commands/Models/DeleteInstructorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Commands/Models/DeleteInstructorCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Commands/Validators/AddInstructorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Commands/Validators/AddInstructorValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Queries/Handler/InstructorQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Queries/Handler/InstructorQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Queries/Models/GetAllInstructorsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Queries/Models/GetAllInstructorsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Queries/Models/GetInstructorByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Queries/Models/GetInstructorByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Instructor/Queries/Response/GetInstructorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Instructor/Queries/Response/GetInstructorResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Handler/StudentCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Handler/StudentCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Models/AddStudentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Models/AddStudentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Models/AddStudentToDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Models/AddStudentToDepartmentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Models/DeleteStudentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Models/DeleteStudentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Models/EditStudentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Models/EditStudentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Validations/AddStudentCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Validations/AddStudentCommandValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Commands/Validations/EditStudentCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Commands/Validations/EditStudentCommandValidator.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Handler/StudentQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Handler/StudentQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Models/GetStudentByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Models/GetStudentByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Models/GetStudentsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Models/GetStudentsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Models/GetStudentsWithPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Models/GetStudentsWithPaginationQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Responses/GetSingleStudentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Responses/GetSingleStudentResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Students/Queries/Responses/GetStudentsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Students/Queries/Responses/GetStudentsResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Handler/SubjectCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Handler/SubjectCommandHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Models/AddInstructorToSubjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Models/AddInstructorToSubjectCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Models/AddSubjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Models/AddSubjectCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Models/AddSubjectToDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Models/AddSubjectToDepartmentCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Models/DeleteSubjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Models/DeleteSubjectCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Models/EditSubjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Models/EditSubjectCommand.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Validation/AddSubjectCommandValidators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Validation/AddSubjectCommandValidators.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Commands/Validation/EditSubjectCommandValidators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Commands/Validation/EditSubjectCommandValidators.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Queries/Handler/SubjectQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Queries/Handler/SubjectQueryHandler.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Queries/Models/GetNumberOfStudentsForSubjectsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Queries/Models/GetNumberOfStudentsForSubjectsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Queries/Models/GetSubjectByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Queries/Models/GetSubjectByIdQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Queries/Models/GetSubjectWithDepartmentsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Queries/Models/GetSubjectWithDepartmentsQuery.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Queries/Models/GetTopStudentInEachSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Queries/Models/GetTopStudentInEachSubject.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Responses/GetSubjectByIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Responses/GetSubjectByIdResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Features/Subject/Responses/GetSubjectWithDepartments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Features/Subject/Responses/GetSubjectWithDepartments.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Filters/AuthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Filters/AuthAttribute.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/ApplicationUserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/ApplicationUserProfile.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/CommandsMapping/AddUserCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/CommandsMapping/AddUserCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/CommandsMapping/UpdateUserCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/CommandsMapping/UpdateUserCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/QueriesMapping/ApplicationUserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/QueriesMapping/ApplicationUserProfile.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/QueriesMapping/GetUserByIdMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/QueriesMapping/GetUserByIdMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/AppUser/QueriesMapping/GetUserListQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/AppUser/QueriesMapping/GetUserListQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/CommandMapping/CreateDepartmentCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/CommandMapping/CreateDepartmentCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/CommandMapping/UpdateDepartmentCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/CommandMapping/UpdateDepartmentCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/DepartmentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/DepartmentMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/QueryMapping/GetAllDepartmentsQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/QueryMapping/GetAllDepartmentsQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/QueryMapping/GetDepartmentByIdQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/QueryMapping/GetDepartmentByIdQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/QueryMapping/GetDepartmentStudentsCountQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/QueryMapping/GetDepartmentStudentsCountQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Departments/QueryMapping/GetTop3InstructorSalariesByDeptQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Departments/QueryMapping/GetTop3InstructorSalariesByDeptQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Instructor/Commands/AddInstructorMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Instructor/Commands/AddInstructorMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Instructor/InstructorMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Instructor/InstructorMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Instructor/Queries/GetInstructorQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Instructor/Queries/GetInstructorQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Roles/QueryMapping/GetRolesListMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Roles/QueryMapping/GetRolesListMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Roles/RoleMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Roles/RoleMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/CommandsMapping/AddStudentCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/CommandsMapping/AddStudentCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/CommandsMapping/EditStudentCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/CommandsMapping/EditStudentCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentByIdQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentByIdQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentsQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentsQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentsWithPaginationQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/QueryMapping/GetStudentsWithPaginationQueryMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Students/StudentProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Students/StudentProfile.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Subject/CommandMapping/AddSubjectCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Subject/CommandMapping/AddSubjectCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Subject/CommandMapping/EditSubjectCommandMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Subject/CommandMapping/EditSubjectCommandMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Subject/QueryMapping/GetSubjectWithDepartmentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Subject/QueryMapping/GetSubjectWithDepartmentMapping.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Mapping/Subject/SubjectProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Mapping/Subject/SubjectProfile.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/Middleware/ErrorHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/Middleware/ErrorHandlerMiddleware.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/ModuleCoreDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/ModuleCoreDependencies.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/SchoolManagment.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/SchoolManagment.Core.csproj -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/En/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/En/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.deps.json -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Core.pdb -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/bin/Debug/net8.0/SchoolManagment.Services.pdb -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/Ar/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/En/SchoolManagment.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/En/SchoolManagment.Core.resources.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolMa.3E8D021B.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.Resources.SharedResource.Ar.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.Resources.SharedResource.Ar.resources -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.Resources.SharedResource.En.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.Resources.SharedResource.En.resources -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.assets.cache -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.pdb -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/SchoolManagment.Core.sourcelink.json -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/ref/SchoolManagment.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/ref/SchoolManagment.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/Debug/net8.0/refint/SchoolManagment.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/Debug/net8.0/refint/SchoolManagment.Core.dll -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/SchoolManagment.Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/project.assets.json -------------------------------------------------------------------------------- /SchoolManagment.Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /SchoolManagment.Data/AppMetaData/Router.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/AppMetaData/Router.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Common/GenerateLocalizableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Common/GenerateLocalizableEntity.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Department.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/DepartmentSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/DepartmentSubject.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Functions/GetTop3InstructorSalariesByDeptFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Functions/GetTop3InstructorSalariesByDeptFunction.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Identity/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Identity/ApplicationUser.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Identity/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Identity/Role.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Identity/UserRefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Identity/UserRefreshToken.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Instructor.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Procedures/DepartmentTotalStudentsProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Procedures/DepartmentTotalStudentsProc.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Student.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/StudentSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/StudentSubject.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Subject.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/SubjectInsturctor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/SubjectInsturctor.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Entities/Views/DepartmentStudentsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Entities/Views/DepartmentStudentsCount.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Helper/EmailSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Helper/EmailSetting.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Helper/Encryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Helper/Encryptor.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Helper/JWT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Helper/JWT.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Helper/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Helper/RefreshToken.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Requests/ClaimsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Requests/ClaimsStore.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Requests/EditRoleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Requests/EditRoleRequest.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Requests/UpdateUserClaimsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Requests/UpdateUserClaimsRequest.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Requests/UpdateUserRolesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Requests/UpdateUserRolesRequest.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Resources/SharedResource.Ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Resources/SharedResource.Ar.resx -------------------------------------------------------------------------------- /SchoolManagment.Data/Resources/SharedResource.En.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Resources/SharedResource.En.resx -------------------------------------------------------------------------------- /SchoolManagment.Data/Resources/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Resources/SharedResource.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Resources/SharedResourcesKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Resources/SharedResourcesKeys.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Responses/GetNumberOfStudentsForSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Responses/GetNumberOfStudentsForSubject.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Responses/GetTopStudentInEachSubjectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Responses/GetTopStudentInEachSubjectResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Responses/JwtAuthModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Responses/JwtAuthModel.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Responses/ManageUserClaimsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Responses/ManageUserClaimsResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/Responses/ManageUserRolesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/Responses/ManageUserRolesResponse.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/SchoolManagment.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/SchoolManagment.Data.csproj -------------------------------------------------------------------------------- /SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.deps.json -------------------------------------------------------------------------------- /SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/bin/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.AssemblyInfo.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.assets.cache -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/SchoolManagment.Data.sourcelink.json -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/ref/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/ref/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/Debug/net8.0/refint/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/Debug/net8.0/refint/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.g.props -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/SchoolManagment.Data.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/project.assets.json -------------------------------------------------------------------------------- /SchoolManagment.Data/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Data/obj/project.nuget.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Abstracts/Functions/IDepartmentGetTop3SalariesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Abstracts/Functions/IDepartmentGetTop3SalariesRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Abstracts/Procedures/IDepartmentTotalStudentsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Abstracts/Procedures/IDepartmentTotalStudentsRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Abstracts/Views/IViewRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Abstracts/Views/IViewRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/ApplicationUserConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/ApplicationUserConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/DepartmentConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/DepartmentConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/DepartmentSubjectConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/DepartmentSubjectConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/InstructorConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/InstructorConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/StudentSubjectConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/StudentSubjectConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Configurations/SubjectInstructorConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Configurations/SubjectInstructorConfigurations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Context/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Context/ApplicationDbContext.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/InfrastructureBases/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/InfrastructureBases/GenericRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/InfrastructureBases/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/InfrastructureBases/IGenericRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/InfrastructureBases/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/InfrastructureBases/IUnitOfWork.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240623085548_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240623085548_Initial.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240623085548_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240623085548_Initial.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628113539_ApplyEntitiesNameToArabicAndEnglish.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628113539_ApplyEntitiesNameToArabicAndEnglish.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628113539_ApplyEntitiesNameToArabicAndEnglish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628113539_ApplyEntitiesNameToArabicAndEnglish.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628133629_EditPKOfStudentSubjectAndDepartmentSubjectTables.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628133935_EditSubIdFK.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628133935_EditSubIdFK.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628133935_EditSubIdFK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628133935_EditSubIdFK.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628155114_AddInstructorTableAndOtherRelations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628155114_AddInstructorTableAndOtherRelations.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628155114_AddInstructorTableAndOtherRelations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628155114_AddInstructorTableAndOtherRelations.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628201035_EditFKsToBeNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628201035_EditFKsToBeNullable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628201035_EditFKsToBeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628201035_EditFKsToBeNullable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240628212637_EditNullablePropertiesAndAddGradeColumnInStudentSubjectTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240629112542_EditDepartmentInsIdFK.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240629112542_EditDepartmentInsIdFK.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240629112542_EditDepartmentInsIdFK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240629112542_EditDepartmentInsIdFK.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240629113455_EditFKOfStudentsAndDepartmentsTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240629113455_EditFKOfStudentsAndDepartmentsTables.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240629113455_EditFKOfStudentsAndDepartmentsTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240629113455_EditFKOfStudentsAndDepartmentsTables.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240730133656_AddIdentity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240730133656_AddIdentity.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240730133656_AddIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240730133656_AddIdentity.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240801011307_AddRefreshTokensTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240801011307_AddRefreshTokensTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240801011307_AddRefreshTokensTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240801011307_AddRefreshTokensTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240801012003_ModifyRefreshTokenTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240801012003_ModifyRefreshTokenTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240801012003_ModifyRefreshTokenTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240801012003_ModifyRefreshTokenTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240802223010_EditRolesTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240802223010_EditRolesTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240802223010_EditRolesTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240802223010_EditRolesTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240805135537_AddEncryptColumnInUserTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240805135537_AddEncryptColumnInUserTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240805135537_AddEncryptColumnInUserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240805135537_AddEncryptColumnInUserTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240806201725_AddImagePathToInstructor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240806201725_AddImagePathToInstructor.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240806201725_AddImagePathToInstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240806201725_AddImagePathToInstructor.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240810200134_EditDepartmentDeleteBehaviors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240810200134_EditDepartmentDeleteBehaviors.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240810200134_EditDepartmentDeleteBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240810200134_EditDepartmentDeleteBehaviors.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240823123038_AddImagePathColumnToStudentAndApplicationUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240823123038_AddImagePathColumnToStudentAndApplicationUser.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240823123038_AddImagePathColumnToStudentAndApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240823123038_AddImagePathColumnToStudentAndApplicationUser.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240826155746_EditApplicationUserTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240826155746_EditApplicationUserTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240826155746_EditApplicationUserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240826155746_EditApplicationUserTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240826161656_AddLastUpdateColumnInApplicationUserTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240826161656_AddLastUpdateColumnInApplicationUserTable.Designer.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240826161656_AddLastUpdateColumnInApplicationUserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240826161656_AddLastUpdateColumnInApplicationUserTable.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/20240901173251_tmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/20240901173251_tmp.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/ModuleInfrastructureDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/ModuleInfrastructureDependencies.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Repositories/Functions/DepartmentGetTop3SalariesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Repositories/Functions/DepartmentGetTop3SalariesRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Repositories/Procedures/DepartmentTotalStudentsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Repositories/Procedures/DepartmentTotalStudentsRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Repositories/Views/DepartmentViewRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Repositories/Views/DepartmentViewRepository.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/SchoolManagment.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/SchoolManagment.Infrastructure.csproj -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Seeder/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Seeder/Policies.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Seeder/RoleSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Seeder/RoleSeeder.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Seeder/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Seeder/Roles.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Seeder/UserSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Seeder/UserSeeder.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/ServiceRegistration.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/BaseSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/BaseSpecification.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/Department/DepartmentWithSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/Department/DepartmentWithSpecifications.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/ISpecification.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/SpecificationEvaluater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/SpecificationEvaluater.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/Student/StudentSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/Student/StudentSpecification.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/Specifications/Student/StudentsWithSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/Specifications/Student/StudentsWithSpecifications.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.deps.json -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/bin/Debug/net8.0/SchoolManagment.Infrastructure.runtimeconfig.json -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolMa.0CC1D1C2.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.AssemblyInfo.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.assets.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.genruntimeconfig.cache -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.pdb -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/SchoolManagment.Infrastructure.sourcelink.json -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/ref/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/ref/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/Debug/net8.0/refint/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/Debug/net8.0/refint/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.g.props -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/SchoolManagment.Infrastructure.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/project.assets.json -------------------------------------------------------------------------------- /SchoolManagment.Infrastructure/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Infrastructure/obj/project.nuget.cache -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IAuthenticationService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IAuthorizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IAuthorizationService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IDepartmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IDepartmentService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IEmailService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IFileService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IInstructorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IInstructorService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IStudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IStudentService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/ISubjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/ISubjectService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Abstracts/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Abstracts/IUserService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/AuthServices/Implementations/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/AuthServices/Implementations/CurrentUserService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/AuthServices/Interfaces/ICurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/AuthServices/Interfaces/ICurrentUserService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/AuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/AuthenticationService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/AuthorizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/AuthorizationService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/DepartmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/DepartmentService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/EmailService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/FileService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/InstructorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/InstructorService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/StudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/StudentService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/SubjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/SubjectService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/Implementations/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/Implementations/UserService.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/ModuleServiceDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/ModuleServiceDependencies.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/SchoolManagment.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/SchoolManagment.Services.csproj -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Data.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Data.pdb -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Infrastructure.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Infrastructure.pdb -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.deps.json -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/bin/Debug/net8.0/SchoolManagment.Services.pdb -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolMa.F4A77896.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.AssemblyInfo.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.assets.cache -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.pdb -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/SchoolManagment.Services.sourcelink.json -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/ref/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/ref/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/Debug/net8.0/refint/SchoolManagment.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/Debug/net8.0/refint/SchoolManagment.Services.dll -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.g.props -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/SchoolManagment.Services.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/project.assets.json -------------------------------------------------------------------------------- /SchoolManagment.Services/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Services/obj/project.nuget.cache -------------------------------------------------------------------------------- /SchoolManagment.Test/CoreTests/Students/Queries/StudentQueryHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Test/CoreTests/Students/Queries/StudentQueryHandlerTest.cs -------------------------------------------------------------------------------- /SchoolManagment.Test/SchoolManagment.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Test/SchoolManagment.Test.csproj -------------------------------------------------------------------------------- /SchoolManagment.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagment.Test/UnitTest1.cs -------------------------------------------------------------------------------- /SchoolManagmentCleanArchitecture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousef132/School-Managament-System/HEAD/SchoolManagmentCleanArchitecture.sln --------------------------------------------------------------------------------