├── .gitattributes ├── .gitignore ├── AirportSystem.sln ├── README.md ├── src ├── AirportSystem.Data │ ├── AirportSystem.Data.csproj │ ├── DbContexts │ │ └── AppDbContext.cs │ ├── Repositories │ │ ├── IRepository.cs │ │ └── Repository.cs │ └── UnitOfWorks │ │ ├── IUnitOfWork.cs │ │ └── UnitOfWork.cs ├── AirportSystem.Domain │ ├── AirportSystem.Domain.csproj │ ├── Commons │ │ └── Auditable.cs │ ├── Entities │ │ ├── Aircrafts │ │ │ └── Aircraft.cs │ │ ├── Airports │ │ │ └── Airport.cs │ │ ├── Assets │ │ │ └── Asset.cs │ │ ├── Bookings │ │ │ └── Booking.cs │ │ ├── Employees │ │ │ └── Employee.cs │ │ ├── Flights │ │ │ ├── Flight.cs │ │ │ └── FlightEmployee.cs │ │ ├── Payments │ │ │ └── Payment.cs │ │ ├── Positions │ │ │ └── Position.cs │ │ ├── RateTickets │ │ │ └── RateTicket.cs │ │ ├── TicketStatuses │ │ │ └── TicketStatus.cs │ │ ├── Tickets │ │ │ └── Ticket.cs │ │ └── Users │ │ │ ├── Permission.cs │ │ │ ├── RolePermission.cs │ │ │ ├── User.cs │ │ │ └── UserRole.cs │ └── Enums │ │ ├── BookingStatus.cs │ │ ├── FileType.cs │ │ ├── FlightStatus.cs │ │ └── PaymentMethod.cs ├── AirportSystem.Service │ ├── AirportSystem.Service.csproj │ ├── Configurations │ │ ├── Constants.cs │ │ ├── Filter.cs │ │ ├── PaginationMetaData.cs │ │ └── PaginationParams.cs │ ├── DTOs │ │ ├── Aircrafts │ │ │ ├── AircraftCreateModel.cs │ │ │ ├── AircraftUpdateModel.cs │ │ │ └── AircraftViewModel.cs │ │ ├── Airports │ │ │ ├── AirportCreateModel.cs │ │ │ ├── AirportUpdateModel.cs │ │ │ └── AirportViewModel.cs │ │ ├── Assets │ │ │ └── AssetViewModel.cs │ │ ├── Bookings │ │ │ ├── BookingCreateModel.cs │ │ │ ├── BookingUpdateModel.cs │ │ │ └── BookingViewModel.cs │ │ ├── Employees │ │ │ ├── EmployeeCreateModel.cs │ │ │ ├── EmployeeUpdateModel.cs │ │ │ └── EmployeeViewModel.cs │ │ ├── FlightEmployee │ │ │ ├── FlightEmployeeCreateModel.cs │ │ │ ├── FlightEmployeeUpdateModel.cs │ │ │ └── FlightEmployeeViewModel.cs │ │ ├── Flights │ │ │ ├── FlightCreateModel.cs │ │ │ ├── FlightUpdateModel.cs │ │ │ └── FlightViewModel.cs │ │ ├── Payments │ │ │ ├── PaymentCreateModel.cs │ │ │ ├── PaymentUpdateModel.cs │ │ │ └── PaymentViewModel.cs │ │ ├── Permissions │ │ │ ├── PermissionCreateModel.cs │ │ │ ├── PermissionUpdateModel.cs │ │ │ └── PermissionViewModel.cs │ │ ├── Positions │ │ │ ├── PositionCreateModel.cs │ │ │ ├── PositionUpdateModel.cs │ │ │ └── PositionViewModel.cs │ │ ├── RateTickets │ │ │ ├── RateTicketCreateModel.cs │ │ │ ├── RateTicketUpdateModel.cs │ │ │ └── RateTicketViewModel.cs │ │ ├── RolePermission │ │ │ ├── RolePermissionCreateModel.cs │ │ │ ├── RolePermissionUpdateModel.cs │ │ │ └── RolePermissionViewModel.cs │ │ ├── TicketStatuses │ │ │ ├── TicketStatusCreateModel.cs │ │ │ ├── TicketStatusUpdateModel.cs │ │ │ └── TicketStatusViewModel.cs │ │ ├── Tickets │ │ │ ├── TicketCreateModel.cs │ │ │ ├── TicketUpdateModel.cs │ │ │ └── TicketViewModel.cs │ │ ├── UserRoles │ │ │ ├── UserRolesCreateModel.cs │ │ │ ├── UserRolesUpdateModel.cs │ │ │ └── UserRolesViewModel.cs │ │ └── Users │ │ │ ├── UserCreateModel.cs │ │ │ ├── UserUpdateModel.cs │ │ │ └── UserViewModel.cs │ ├── Exceptions │ │ ├── AlreadyExistException.cs │ │ ├── ArgumentIsNotValidException.cs │ │ ├── CustomException.cs │ │ └── NotFoundException.cs │ ├── Extensions │ │ ├── AuditableExtension.cs │ │ └── CollectionExtension.cs │ ├── Helper │ │ ├── EnvironmentHelper.cs │ │ ├── FileHelper.cs │ │ ├── HttpContextHelper.cs │ │ └── PasswordHasher.cs │ ├── Mappers │ │ └── MappingProfile.cs │ └── Services │ │ └── Assets │ │ ├── AssetService.cs │ │ └── IAssetService.cs └── AirportSystem.WebApi │ ├── AirportSystem.WebApi.csproj │ ├── AirportSystem.WebApi.http │ ├── Controllers │ └── WeatherForecastController.cs │ ├── Extensions │ └── ServiceCollection.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json └── test └── AirportSystem.Tests ├── AirportSystem.Tests.csproj ├── GlobalUsings.cs └── UnitTest1.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /AirportSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/AirportSystem.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/README.md -------------------------------------------------------------------------------- /src/AirportSystem.Data/AirportSystem.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/AirportSystem.Data.csproj -------------------------------------------------------------------------------- /src/AirportSystem.Data/DbContexts/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/DbContexts/AppDbContext.cs -------------------------------------------------------------------------------- /src/AirportSystem.Data/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/AirportSystem.Data/Repositories/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/Repositories/Repository.cs -------------------------------------------------------------------------------- /src/AirportSystem.Data/UnitOfWorks/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/UnitOfWorks/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/AirportSystem.Data/UnitOfWorks/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Data/UnitOfWorks/UnitOfWork.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/AirportSystem.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/AirportSystem.Domain.csproj -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Commons/Auditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Commons/Auditable.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Aircrafts/Aircraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Aircrafts/Aircraft.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Airports/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Airports/Airport.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Assets/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Assets/Asset.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Bookings/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Bookings/Booking.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Employees/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Employees/Employee.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Flights/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Flights/Flight.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Flights/FlightEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Flights/FlightEmployee.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Payments/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Payments/Payment.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Positions/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Positions/Position.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/RateTickets/RateTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/RateTickets/RateTicket.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/TicketStatuses/TicketStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/TicketStatuses/TicketStatus.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Tickets/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Tickets/Ticket.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Users/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Users/Permission.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Users/RolePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Users/RolePermission.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Users/User.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Entities/Users/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Entities/Users/UserRole.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Enums/BookingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Enums/BookingStatus.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Enums/FileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Enums/FileType.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Enums/FlightStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Enums/FlightStatus.cs -------------------------------------------------------------------------------- /src/AirportSystem.Domain/Enums/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Domain/Enums/PaymentMethod.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/AirportSystem.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/AirportSystem.Service.csproj -------------------------------------------------------------------------------- /src/AirportSystem.Service/Configurations/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Configurations/Constants.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Configurations/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Configurations/Filter.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Configurations/PaginationMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Configurations/PaginationMetaData.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Configurations/PaginationParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Configurations/PaginationParams.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Aircrafts/AircraftCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Aircrafts/AircraftCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Aircrafts/AircraftUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Aircrafts/AircraftUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Aircrafts/AircraftViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Aircrafts/AircraftViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Airports/AirportCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Airports/AirportCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Airports/AirportUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Airports/AirportUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Airports/AirportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Airports/AirportViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Assets/AssetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Assets/AssetViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Bookings/BookingCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Bookings/BookingCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Bookings/BookingUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Bookings/BookingUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Bookings/BookingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Bookings/BookingViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Employees/EmployeeCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Employees/EmployeeCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Employees/EmployeeUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Employees/EmployeeUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Employees/EmployeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Employees/EmployeeViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/FlightEmployee/FlightEmployeeViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Flights/FlightCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Flights/FlightCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Flights/FlightUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Flights/FlightUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Flights/FlightViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Flights/FlightViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Payments/PaymentCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Payments/PaymentCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Payments/PaymentUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Payments/PaymentUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Payments/PaymentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Payments/PaymentViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Permissions/PermissionCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Permissions/PermissionCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Permissions/PermissionUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Permissions/PermissionUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Permissions/PermissionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Permissions/PermissionViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Positions/PositionCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Positions/PositionCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Positions/PositionUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Positions/PositionUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Positions/PositionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Positions/PositionViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RateTickets/RateTicketCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RateTickets/RateTicketCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RateTickets/RateTicketUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RateTickets/RateTicketUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RateTickets/RateTicketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RateTickets/RateTicketViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RolePermission/RolePermissionCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RolePermission/RolePermissionCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RolePermission/RolePermissionUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RolePermission/RolePermissionUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/RolePermission/RolePermissionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/RolePermission/RolePermissionViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/TicketStatuses/TicketStatusViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Tickets/TicketCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Tickets/TicketCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Tickets/TicketUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Tickets/TicketUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Tickets/TicketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Tickets/TicketViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/UserRoles/UserRolesCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/UserRoles/UserRolesCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/UserRoles/UserRolesUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/UserRoles/UserRolesUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/UserRoles/UserRolesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/UserRoles/UserRolesViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Users/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Users/UserCreateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Users/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Users/UserUpdateModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/DTOs/Users/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/DTOs/Users/UserViewModel.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Exceptions/AlreadyExistException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Exceptions/AlreadyExistException.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Exceptions/ArgumentIsNotValidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Exceptions/ArgumentIsNotValidException.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Exceptions/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Exceptions/CustomException.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Extensions/AuditableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Extensions/AuditableExtension.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Extensions/CollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Extensions/CollectionExtension.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Helper/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Helper/EnvironmentHelper.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Helper/FileHelper.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Helper/HttpContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Helper/HttpContextHelper.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Helper/PasswordHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Helper/PasswordHasher.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Mappers/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Mappers/MappingProfile.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Services/Assets/AssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Services/Assets/AssetService.cs -------------------------------------------------------------------------------- /src/AirportSystem.Service/Services/Assets/IAssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.Service/Services/Assets/IAssetService.cs -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/AirportSystem.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/AirportSystem.WebApi.csproj -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/AirportSystem.WebApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/AirportSystem.WebApi.http -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/Extensions/ServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/Extensions/ServiceCollection.cs -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/Program.cs -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/AirportSystem.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/src/AirportSystem.WebApi/appsettings.json -------------------------------------------------------------------------------- /test/AirportSystem.Tests/AirportSystem.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/test/AirportSystem.Tests/AirportSystem.Tests.csproj -------------------------------------------------------------------------------- /test/AirportSystem.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/AirportSystem.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javohir-Khursanboyev/AirportSystem/HEAD/test/AirportSystem.Tests/UnitTest1.cs --------------------------------------------------------------------------------