├── .github └── workflows │ ├── build.yml │ └── master_tarteeb.yml ├── .gitignore ├── LICENSE ├── README.md ├── Tarteeb.Api.Infrastructure.Build ├── Program.cs └── Tarteeb.Api.Infrastructure.Build.csproj ├── Tarteeb.Api.Tests.Unit ├── Services │ ├── Foundations │ │ ├── Securities │ │ │ ├── SecurityServiceTests.Logic.Create.cs │ │ │ ├── SecurityServiceTests.Validations.Create.cs │ │ │ └── SecurityServiceTests.cs │ │ ├── Teams │ │ │ ├── TeamServiceTests.Exception.RemoveById.cs │ │ │ ├── TeamServiceTests.Exceptions.Add.cs │ │ │ ├── TeamServiceTests.Exceptions.Modify.cs │ │ │ ├── TeamServiceTests.Exceptions.RetrieveAll.cs │ │ │ ├── TeamServiceTests.Exceptions.RetrieveById.cs │ │ │ ├── TeamServiceTests.Logic.Add.cs │ │ │ ├── TeamServiceTests.Logic.Modify.cs │ │ │ ├── TeamServiceTests.Logic.RemoveById.cs │ │ │ ├── TeamServiceTests.Logic.RetrieveAll.cs │ │ │ ├── TeamServiceTests.Logic.RetrieveById.cs │ │ │ ├── TeamServiceTests.Validations.Add.cs │ │ │ ├── TeamServiceTests.Validations.Modify.cs │ │ │ ├── TeamServiceTests.Validations.RemoveById.cs │ │ │ ├── TeamServiceTests.Validations.RetrieveById.cs │ │ │ └── TeamServiceTests.cs │ │ ├── Tickets │ │ │ ├── TicketServiceTests.Exceptions.Add.cs │ │ │ ├── TicketServiceTests.Exceptions.Modify.cs │ │ │ ├── TicketServiceTests.Exceptions.RemoveById.cs │ │ │ ├── TicketServiceTests.Exceptions.RetrieveAll.cs │ │ │ ├── TicketServiceTests.Exceptions.RetrievebyId.cs │ │ │ ├── TicketServiceTests.Logic.Add.cs │ │ │ ├── TicketServiceTests.Logic.Modify.cs │ │ │ ├── TicketServiceTests.Logic.RemoveById.cs │ │ │ ├── TicketServiceTests.Logic.RetrieveAll.cs │ │ │ ├── TicketServiceTests.Logic.RetrieveById.cs │ │ │ ├── TicketServiceTests.Validations.Add.cs │ │ │ ├── TicketServiceTests.Validations.Modify.cs │ │ │ ├── TicketServiceTests.Validations.RemoveById.cs │ │ │ ├── TicketServiceTests.Validations.RetrieveById.cs │ │ │ └── TicketServiceTests.cs │ │ └── Users │ │ │ ├── UserServiceTests.Exceptions.Add.cs │ │ │ ├── UserServiceTests.Exceptions.Modify.cs │ │ │ ├── UserServiceTests.Exceptions.RemoveById.cs │ │ │ ├── UserServiceTests.Exceptions.RetrieveAll.cs │ │ │ ├── UserServiceTests.Exceptions.RetrieveById.cs │ │ │ ├── UserServiceTests.Logic.Add.cs │ │ │ ├── UserServiceTests.Logic.Modify.cs │ │ │ ├── UserServiceTests.Logic.RemoveById.cs │ │ │ ├── UserServiceTests.Logic.RetrieveAll.cs │ │ │ ├── UserServiceTests.Logic.RetrieveById.cs │ │ │ ├── UserServiceTests.Validation.Modify.cs │ │ │ ├── UserServiceTests.Validations.Add.cs │ │ │ ├── UserServiceTests.Validations.RemoveById.cs │ │ │ ├── UserServiceTests.Validations.RetrieveById.cs │ │ │ └── UserServiceTests.cs │ ├── Orchestrations │ │ ├── UserSecurityOrchestrationServiceTests.Exceptions.Create.cs │ │ ├── UserSecurityOrchestrationServiceTests.Logic.Create.cs │ │ ├── UserSecurityOrchestrationServiceTests.Validations.Create.cs │ │ └── UserSecurityOrchestrationServiceTests.cs │ └── Processings │ │ └── Users │ │ ├── UserProcessingsServiceTests.Exceptions.Retrieve.cs │ │ ├── UserProcessingsServiceTests.Logic.cs │ │ ├── UserProcessingsServiceTests.Validation.Retrieve.cs │ │ └── UserProcessingsServiceTests.cs └── Tarteeb.Api.Tests.Unit.csproj ├── Tarteeb.Api ├── Brokers │ ├── DateTimes │ │ ├── DateTimeBroker.cs │ │ └── IDateTimeBroker.cs │ ├── Loggings │ │ ├── ILoggingBroker.cs │ │ └── LoggingBroker.cs │ ├── Storages │ │ ├── IStorageBroker.Teams.cs │ │ ├── IStorageBroker.Tickets.cs │ │ ├── IStorageBroker.Users.cs │ │ ├── IStorageBroker.cs │ │ ├── StorageBroker.Teams.cs │ │ ├── StorageBroker.Tickets.cs │ │ ├── StorageBroker.Users.Configurations.cs │ │ ├── StorageBroker.Users.cs │ │ └── StorageBroker.cs │ └── Tokens │ │ ├── ITokenBroker.cs │ │ └── TokenBroker.cs ├── Controllers │ ├── AccountsController.cs │ ├── HomeController.cs │ ├── TeamsController.cs │ ├── TicketsController.cs │ └── UsersController.cs ├── Migrations │ ├── 20221107175023_AddTasks.Designer.cs │ ├── 20221107175023_AddTasks.cs │ ├── 20221110171741_RenameTaskToTicket.Designer.cs │ ├── 20221110171741_RenameTaskToTicket.cs │ ├── 20221110175226_RenameTicketToTickets.Designer.cs │ ├── 20221110175226_RenameTicketToTickets.cs │ ├── 20221110181513_ChangePriority.Designer.cs │ ├── 20221110181513_ChangePriority.cs │ ├── 20221112084050_AddUsers.Designer.cs │ ├── 20221112084050_AddUsers.cs │ ├── 20221113120827_AddTeam.Designer.cs │ ├── 20221113120827_AddTeam.cs │ ├── 20230102085421_AddPasswordOnUser.Designer.cs │ ├── 20230102085421_AddPasswordOnUser.cs │ ├── 20230210045018_UniqueEmail.Designer.cs │ ├── 20230210045018_UniqueEmail.cs │ └── StorageBrokerModelSnapshot.cs ├── Models │ ├── Foundations │ │ ├── Teams │ │ │ ├── Exceptions │ │ │ │ ├── AlreadyExistsTeamException.cs │ │ │ │ ├── FailedTeamServiceException.cs │ │ │ │ ├── FailedTeamStorageException.cs │ │ │ │ ├── InvalidTeamException.cs │ │ │ │ ├── LockedTeamException.cs │ │ │ │ ├── NotFoundTeamException.cs │ │ │ │ ├── NullTeamException.cs │ │ │ │ ├── TeamDependencyException.cs │ │ │ │ ├── TeamDependencyValidationException.cs │ │ │ │ ├── TeamServiceException.cs │ │ │ │ └── TeamValidationException.cs │ │ │ └── Team.cs │ │ ├── Tickets │ │ │ ├── Exceptions │ │ │ │ ├── AlreadyExistsTicketException.cs │ │ │ │ ├── FailedTicketServiceException.cs │ │ │ │ ├── FailedTicketStorageException.cs │ │ │ │ ├── InvalidTicketException.cs │ │ │ │ ├── InvalidTicketReferenceException.cs │ │ │ │ ├── LockedTicketException.cs │ │ │ │ ├── NotFoundTicketException.cs │ │ │ │ ├── NullTicketException.cs │ │ │ │ ├── TicketDependencyException.cs │ │ │ │ ├── TicketDependencyValidationException.cs │ │ │ │ ├── TicketServiceException.cs │ │ │ │ └── TicketValidationException.cs │ │ │ ├── Priority.cs │ │ │ ├── Ticket.cs │ │ │ └── TicketStatus.cs │ │ ├── Tokens │ │ │ └── TokenConfiguration.cs │ │ └── Users │ │ │ ├── Exceptions │ │ │ ├── AlreadyExistsUserException.cs │ │ │ ├── FailedUserServiceException.cs │ │ │ ├── FailedUserStorageException.cs │ │ │ ├── InvalidUserException.cs │ │ │ ├── InvalidUserReferenceException.cs │ │ │ ├── LockedUserException.cs │ │ │ ├── NotFoundUserException.cs │ │ │ ├── NullUserException.cs │ │ │ ├── UserDependencyException.cs │ │ │ ├── UserDependencyValidationException.cs │ │ │ ├── UserServiceException.cs │ │ │ └── UserValidationException.cs │ │ │ └── User.cs │ ├── Orchestrations │ │ └── UserTokens │ │ │ ├── Exceptions │ │ │ ├── FailedUserTokenOrchestrationException.cs │ │ │ ├── InvalidUserCreadentialOrchestrationException.cs │ │ │ ├── UserTokenOrchestrationDependencyException.cs │ │ │ ├── UserTokenOrchestrationServiceException.cs │ │ │ └── UserTokenOrchestrationValidationException.cs │ │ │ └── UserToken.cs │ └── Processings │ │ └── Users │ │ ├── InvalidUserProcessingException.cs │ │ ├── UserProcessingDependencyException.cs │ │ └── UserProcessingValidationException.cs ├── Program.cs ├── Properties │ ├── ServiceDependencies │ │ └── local │ │ │ └── appInsights1.arm.json │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Services │ ├── Foundations │ │ ├── Securities │ │ │ ├── ISecurityService.cs │ │ │ ├── SecurityService.Exceptions.cs │ │ │ ├── SecurityService.Validations.cs │ │ │ └── SecurityService.cs │ │ ├── Teams │ │ │ ├── ITeamService.cs │ │ │ ├── TeamService.Exceptions.cs │ │ │ ├── TeamService.Validations.cs │ │ │ └── TeamService.cs │ │ ├── Tickets │ │ │ ├── ITicketService.cs │ │ │ ├── TicketService.Exceptions.cs │ │ │ ├── TicketService.Validations.cs │ │ │ └── TicketService.cs │ │ └── Users │ │ │ ├── IUserService.cs │ │ │ ├── UserService.Exceptions.cs │ │ │ ├── UserService.Validations.cs │ │ │ └── UserService.cs │ ├── Orchestrations │ │ ├── IUserSecurityOrchestrationService.cs │ │ ├── UserSecurityOrchestrationService.Exceptions.cs │ │ ├── UserSecurityOrchestrationService.Validations.cs │ │ └── UserSecurityOrchestrationService.cs │ └── Processings │ │ └── Users │ │ ├── IUserProcessingService.cs │ │ ├── UserProcessingService.Exceptions.cs │ │ ├── UserProcessingService.Validations.cs │ │ └── UserProcessingService.cs ├── Startup.cs ├── Tarteeb.Api.csproj └── appsettings.json └── Tarteeb.sln /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/master_tarteeb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/.github/workflows/master_tarteeb.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tarteeb 2 | A Standard-compliant task management software 3 | 4 | -------------------------------------------------------------------------------- /Tarteeb.Api.Infrastructure.Build/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Infrastructure.Build/Program.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Infrastructure.Build/Tarteeb.Api.Infrastructure.Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Infrastructure.Build/Tarteeb.Api.Infrastructure.Build.csproj -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.Logic.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.Logic.Create.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.Validations.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.Validations.Create.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Securities/SecurityServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exception.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exception.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Exceptions.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Logic.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.Validations.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Teams/TeamServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RetrievebyId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Exceptions.RetrievebyId.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Logic.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.Validations.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Tickets/TicketServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Exceptions.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RetrieveAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RetrieveAll.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Logic.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validation.Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validation.Modify.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.Add.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.RemoveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.RemoveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.RetrieveById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.Validations.RetrieveById.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Foundations/Users/UserServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Exceptions.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Exceptions.Create.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Logic.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Logic.Create.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Validations.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.Validations.Create.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Orchestrations/UserSecurityOrchestrationServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Exceptions.Retrieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Exceptions.Retrieve.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Logic.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Validation.Retrieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.Validation.Retrieve.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Services/Processings/Users/UserProcessingsServiceTests.cs -------------------------------------------------------------------------------- /Tarteeb.Api.Tests.Unit/Tarteeb.Api.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api.Tests.Unit/Tarteeb.Api.Tests.Unit.csproj -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/DateTimes/DateTimeBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/DateTimes/DateTimeBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/DateTimes/IDateTimeBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/DateTimes/IDateTimeBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Loggings/ILoggingBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Loggings/ILoggingBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Loggings/LoggingBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Loggings/LoggingBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/IStorageBroker.Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/IStorageBroker.Teams.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/IStorageBroker.Tickets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/IStorageBroker.Tickets.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/IStorageBroker.Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/IStorageBroker.Users.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/IStorageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/IStorageBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/StorageBroker.Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/StorageBroker.Teams.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/StorageBroker.Tickets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/StorageBroker.Tickets.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/StorageBroker.Users.Configurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/StorageBroker.Users.Configurations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/StorageBroker.Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/StorageBroker.Users.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Storages/StorageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Storages/StorageBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Tokens/ITokenBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Tokens/ITokenBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Brokers/Tokens/TokenBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Brokers/Tokens/TokenBroker.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Controllers/AccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Controllers/AccountsController.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Controllers/TeamsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Controllers/TeamsController.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Controllers/TicketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Controllers/TicketsController.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Controllers/UsersController.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221107175023_AddTasks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221107175023_AddTasks.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221107175023_AddTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221107175023_AddTasks.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110171741_RenameTaskToTicket.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110171741_RenameTaskToTicket.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110171741_RenameTaskToTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110171741_RenameTaskToTicket.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110175226_RenameTicketToTickets.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110175226_RenameTicketToTickets.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110175226_RenameTicketToTickets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110175226_RenameTicketToTickets.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110181513_ChangePriority.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110181513_ChangePriority.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221110181513_ChangePriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221110181513_ChangePriority.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221112084050_AddUsers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221112084050_AddUsers.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221112084050_AddUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221112084050_AddUsers.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221113120827_AddTeam.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221113120827_AddTeam.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20221113120827_AddTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20221113120827_AddTeam.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20230102085421_AddPasswordOnUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20230102085421_AddPasswordOnUser.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20230102085421_AddPasswordOnUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20230102085421_AddPasswordOnUser.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20230210045018_UniqueEmail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20230210045018_UniqueEmail.Designer.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/20230210045018_UniqueEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/20230210045018_UniqueEmail.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Migrations/StorageBrokerModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Migrations/StorageBrokerModelSnapshot.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/AlreadyExistsTeamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/AlreadyExistsTeamException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/FailedTeamServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/FailedTeamServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/FailedTeamStorageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/FailedTeamStorageException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/InvalidTeamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/InvalidTeamException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/LockedTeamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/LockedTeamException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/NotFoundTeamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/NotFoundTeamException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/NullTeamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/NullTeamException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamDependencyException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamDependencyValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamDependencyValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Exceptions/TeamValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Teams/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Teams/Team.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/AlreadyExistsTicketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/AlreadyExistsTicketException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/FailedTicketServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/FailedTicketServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/FailedTicketStorageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/FailedTicketStorageException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/InvalidTicketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/InvalidTicketException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/InvalidTicketReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/InvalidTicketReferenceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/LockedTicketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/LockedTicketException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/NotFoundTicketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/NotFoundTicketException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/NullTicketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/NullTicketException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketDependencyException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketDependencyValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketDependencyValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Exceptions/TicketValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Priority.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/Ticket.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tickets/TicketStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tickets/TicketStatus.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Tokens/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Tokens/TokenConfiguration.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/AlreadyExistsUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/AlreadyExistsUserException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/FailedUserServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/FailedUserServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/FailedUserStorageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/FailedUserStorageException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/InvalidUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/InvalidUserException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/InvalidUserReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/InvalidUserReferenceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/LockedUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/LockedUserException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/NotFoundUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/NotFoundUserException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/NullUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/NullUserException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/UserDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/UserDependencyException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/UserDependencyValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/UserDependencyValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/UserServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/UserServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/Exceptions/UserValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/Exceptions/UserValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Foundations/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Foundations/Users/User.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/FailedUserTokenOrchestrationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/FailedUserTokenOrchestrationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/InvalidUserCreadentialOrchestrationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/InvalidUserCreadentialOrchestrationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationDependencyException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationServiceException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/Exceptions/UserTokenOrchestrationValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Orchestrations/UserTokens/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Orchestrations/UserTokens/UserToken.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Processings/Users/InvalidUserProcessingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Processings/Users/InvalidUserProcessingException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Processings/Users/UserProcessingDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Processings/Users/UserProcessingDependencyException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Models/Processings/Users/UserProcessingValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Models/Processings/Users/UserProcessingValidationException.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Program.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Properties/ServiceDependencies/local/appInsights1.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Properties/ServiceDependencies/local/appInsights1.arm.json -------------------------------------------------------------------------------- /Tarteeb.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /Tarteeb.Api/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Tarteeb.Api/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Securities/ISecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Securities/ISecurityService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Securities/SecurityService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Securities/SecurityService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Securities/SecurityService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Securities/SecurityService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Securities/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Securities/SecurityService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Teams/ITeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Teams/ITeamService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Teams/TeamService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Teams/TeamService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Teams/TeamService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Teams/TeamService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Teams/TeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Teams/TeamService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Tickets/ITicketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Tickets/ITicketService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Tickets/TicketService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Tickets/TicketService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Tickets/TicketService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Tickets/TicketService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Tickets/TicketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Tickets/TicketService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Users/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Users/IUserService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Users/UserService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Users/UserService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Users/UserService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Users/UserService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Foundations/Users/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Foundations/Users/UserService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Orchestrations/IUserSecurityOrchestrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Orchestrations/IUserSecurityOrchestrationService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Orchestrations/UserSecurityOrchestrationService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Processings/Users/IUserProcessingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Processings/Users/IUserProcessingService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Processings/Users/UserProcessingService.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Processings/Users/UserProcessingService.Exceptions.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Processings/Users/UserProcessingService.Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Processings/Users/UserProcessingService.Validations.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Services/Processings/Users/UserProcessingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Services/Processings/Users/UserProcessingService.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Startup.cs -------------------------------------------------------------------------------- /Tarteeb.Api/Tarteeb.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/Tarteeb.Api.csproj -------------------------------------------------------------------------------- /Tarteeb.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.Api/appsettings.json -------------------------------------------------------------------------------- /Tarteeb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/Tarteeb/HEAD/Tarteeb.sln --------------------------------------------------------------------------------