├── .gitattributes ├── .gitignore ├── Application ├── Application.csproj ├── ApplicationServiceRegistration.cs ├── Features │ ├── Auth │ │ └── Constants │ │ │ └── AuthMessages.cs │ ├── Brands │ │ ├── Commands │ │ │ ├── Create │ │ │ │ ├── CreateBrandCommand.cs │ │ │ │ ├── CreateBrandCommandValidator.cs │ │ │ │ └── CreatedBrandResponse.cs │ │ │ ├── Delete │ │ │ │ ├── DeleteBrandCommand.cs │ │ │ │ └── DeletedBrandResponse.cs │ │ │ └── Update │ │ │ │ ├── UpdateBrandCommand.cs │ │ │ │ └── UpdatedBrandResponse.cs │ │ ├── Constants │ │ │ └── BrandsMessages.cs │ │ ├── Profiles │ │ │ └── MappingProfiles.cs │ │ ├── Queries │ │ │ ├── GetById │ │ │ │ ├── GetByIdBrandQuery.cs │ │ │ │ └── GetByIdBrandResponse.cs │ │ │ └── GetList │ │ │ │ ├── GetListBrandListItemDto.cs │ │ │ │ └── GetListBrandQuery.cs │ │ └── Rules │ │ │ └── BrandBusinessRules.cs │ ├── Models │ │ ├── Profiles │ │ │ └── MappingProfiles.cs │ │ └── Queries │ │ │ ├── GetList │ │ │ ├── GetListModelListItemDto.cs │ │ │ └── GetListModelQuery.cs │ │ │ └── GetListByDynamic │ │ │ ├── GetListByDynamicModelListItemDto.cs │ │ │ └── GetListByDynamicModelQuery.cs │ └── Users │ │ ├── Commands │ │ └── Create │ │ │ ├── CreateUserCommand.cs │ │ │ └── CreatedUserResponse.cs │ │ ├── Constants │ │ └── UsersOperationClaims.cs │ │ ├── Profiles │ │ └── MappingProfiles.cs │ │ └── Rules │ │ └── UserBusinessRules.cs └── Services │ └── Repositories │ ├── IBrandRepository.cs │ ├── ICarRepository.cs │ ├── IEmailAuthenticatorRepository.cs │ ├── IFuelRepository.cs │ ├── IModelRepository.cs │ ├── IOperationClaimRepository.cs │ ├── IOtpAuthenticatorRepository.cs │ ├── IRefreshTokenRepository.cs │ ├── ITransmissionRepository.cs │ ├── IUserOperationClaimRepository.cs │ └── IUserRepository.cs ├── Domain ├── Domain.csproj ├── Entities │ ├── Brand.cs │ ├── Car.cs │ ├── Fuel.cs │ ├── Model.cs │ └── Transmission.cs └── Enums │ └── CarState.cs ├── Infrastructure └── Infrastructure.csproj ├── Persistence ├── Contexts │ └── BaseDbContext.cs ├── EntityConfigurations │ ├── BrandConfiguration.cs │ ├── CarConfiguration.cs │ ├── EmailAuthenticatorConfiguration.cs │ ├── FuelConfiguration.cs │ ├── ModelConfiguration.cs │ ├── OperationClaimConfiguration.cs │ ├── OtpAuthenticatorConfiguration.cs │ ├── RefreshTokenConfiguration.cs │ ├── TransmissionConfiguration.cs │ ├── UserConfiguration.cs │ └── UserOperationClaimConfiguration.cs ├── Migrations │ ├── 20230728141331_init.Designer.cs │ ├── 20230728141331_init.cs │ └── BaseDbContextModelSnapshot.cs ├── Persistence.csproj ├── PersistenceServiceRegistration.cs └── Repositories │ ├── BrandRepository.cs │ ├── CarRepository.cs │ ├── EmailAuthenticatorRepository.cs │ ├── FuelRepository.cs │ ├── ModelRepository.cs │ ├── OperationClaimRepository.cs │ ├── OtpAuthenticatorRepository.cs │ ├── RefreshTokenRepository.cs │ ├── TransmissionRepository.cs │ ├── UserOperationClaimRepository.cs │ └── UserRepository.cs ├── RentACar.sln └── WebApi ├── Controllers ├── BaseController.cs ├── BrandsController.cs └── ModelsController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── WebApi.csproj ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Application.csproj -------------------------------------------------------------------------------- /Application/ApplicationServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/ApplicationServiceRegistration.cs -------------------------------------------------------------------------------- /Application/Features/Auth/Constants/AuthMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Auth/Constants/AuthMessages.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Create/CreateBrandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Create/CreateBrandCommand.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Create/CreateBrandCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Create/CreateBrandCommandValidator.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Create/CreatedBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Create/CreatedBrandResponse.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Delete/DeleteBrandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Delete/DeleteBrandCommand.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Delete/DeletedBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Delete/DeletedBrandResponse.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Update/UpdateBrandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Update/UpdateBrandCommand.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Commands/Update/UpdatedBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Commands/Update/UpdatedBrandResponse.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Constants/BrandsMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Constants/BrandsMessages.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Queries/GetById/GetByIdBrandQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Queries/GetById/GetByIdBrandQuery.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Queries/GetById/GetByIdBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Queries/GetById/GetByIdBrandResponse.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Queries/GetList/GetListBrandListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Queries/GetList/GetListBrandListItemDto.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Queries/GetList/GetListBrandQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Queries/GetList/GetListBrandQuery.cs -------------------------------------------------------------------------------- /Application/Features/Brands/Rules/BrandBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Brands/Rules/BrandBusinessRules.cs -------------------------------------------------------------------------------- /Application/Features/Models/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Models/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /Application/Features/Models/Queries/GetList/GetListModelListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Models/Queries/GetList/GetListModelListItemDto.cs -------------------------------------------------------------------------------- /Application/Features/Models/Queries/GetList/GetListModelQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Models/Queries/GetList/GetListModelQuery.cs -------------------------------------------------------------------------------- /Application/Features/Models/Queries/GetListByDynamic/GetListByDynamicModelListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Models/Queries/GetListByDynamic/GetListByDynamicModelListItemDto.cs -------------------------------------------------------------------------------- /Application/Features/Models/Queries/GetListByDynamic/GetListByDynamicModelQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Models/Queries/GetListByDynamic/GetListByDynamicModelQuery.cs -------------------------------------------------------------------------------- /Application/Features/Users/Commands/Create/CreateUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Users/Commands/Create/CreateUserCommand.cs -------------------------------------------------------------------------------- /Application/Features/Users/Commands/Create/CreatedUserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Users/Commands/Create/CreatedUserResponse.cs -------------------------------------------------------------------------------- /Application/Features/Users/Constants/UsersOperationClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Users/Constants/UsersOperationClaims.cs -------------------------------------------------------------------------------- /Application/Features/Users/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Users/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /Application/Features/Users/Rules/UserBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Features/Users/Rules/UserBusinessRules.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IBrandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IBrandRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/ICarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/ICarRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IEmailAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IEmailAuthenticatorRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IFuelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IFuelRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IModelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IModelRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IOperationClaimRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IOtpAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IOtpAuthenticatorRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IRefreshTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IRefreshTokenRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/ITransmissionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/ITransmissionRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IUserOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IUserOperationClaimRepository.cs -------------------------------------------------------------------------------- /Application/Services/Repositories/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Application/Services/Repositories/IUserRepository.cs -------------------------------------------------------------------------------- /Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Domain.csproj -------------------------------------------------------------------------------- /Domain/Entities/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Entities/Brand.cs -------------------------------------------------------------------------------- /Domain/Entities/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Entities/Car.cs -------------------------------------------------------------------------------- /Domain/Entities/Fuel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Entities/Fuel.cs -------------------------------------------------------------------------------- /Domain/Entities/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Entities/Model.cs -------------------------------------------------------------------------------- /Domain/Entities/Transmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Entities/Transmission.cs -------------------------------------------------------------------------------- /Domain/Enums/CarState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Domain/Enums/CarState.cs -------------------------------------------------------------------------------- /Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /Persistence/Contexts/BaseDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Contexts/BaseDbContext.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/BrandConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/BrandConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/CarConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/CarConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/EmailAuthenticatorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/EmailAuthenticatorConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/FuelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/FuelConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/ModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/ModelConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/OperationClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/OperationClaimConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/OtpAuthenticatorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/OtpAuthenticatorConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/RefreshTokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/RefreshTokenConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/TransmissionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/TransmissionConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/UserConfiguration.cs -------------------------------------------------------------------------------- /Persistence/EntityConfigurations/UserOperationClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/EntityConfigurations/UserOperationClaimConfiguration.cs -------------------------------------------------------------------------------- /Persistence/Migrations/20230728141331_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Migrations/20230728141331_init.Designer.cs -------------------------------------------------------------------------------- /Persistence/Migrations/20230728141331_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Migrations/20230728141331_init.cs -------------------------------------------------------------------------------- /Persistence/Migrations/BaseDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Migrations/BaseDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Persistence/Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Persistence.csproj -------------------------------------------------------------------------------- /Persistence/PersistenceServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/PersistenceServiceRegistration.cs -------------------------------------------------------------------------------- /Persistence/Repositories/BrandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/BrandRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/CarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/CarRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/EmailAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/EmailAuthenticatorRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/FuelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/FuelRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/ModelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/ModelRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/OperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/OperationClaimRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/OtpAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/OtpAuthenticatorRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/RefreshTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/RefreshTokenRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/TransmissionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/TransmissionRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/UserOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/UserOperationClaimRepository.cs -------------------------------------------------------------------------------- /Persistence/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/Persistence/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /RentACar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/RentACar.sln -------------------------------------------------------------------------------- /WebApi/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/Controllers/BaseController.cs -------------------------------------------------------------------------------- /WebApi/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebApi/Controllers/ModelsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/Controllers/ModelsController.cs -------------------------------------------------------------------------------- /WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/Program.cs -------------------------------------------------------------------------------- /WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/WebApi.csproj -------------------------------------------------------------------------------- /WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/RentACar-Udemy-Course/HEAD/WebApi/appsettings.json --------------------------------------------------------------------------------