├── .gitattributes ├── .gitignore ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarImageService.cs │ ├── ICarService.cs │ ├── IColorService.cs │ ├── ICustomerService.cs │ ├── IPaymentService.cs │ ├── IRentalService.cs │ └── IUserService.cs ├── Business.csproj ├── BusinessAspects │ └── AutoFac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarImageManager.cs │ ├── CarManager.cs │ ├── ColorManager.cs │ ├── CustomerManager.cs │ ├── PaymentManager.cs │ ├── RentalManager.cs │ └── UserManager.cs ├── Constrants │ └── Messages.cs ├── DependencyResolvers │ └── Autofac │ │ └── AutofacBusinessModule.cs └── ValidationRules │ └── FluentValidation │ ├── BrandValidator.cs │ ├── CarImageValidator.cs │ ├── CarValidator.cs │ ├── ColorValidator.cs │ ├── FVCustomerValidator.cs │ ├── FVPaymentValidator.cs │ ├── RentalValidator.cs │ └── UserValidator.cs ├── ConsoleUI ├── ConsoleUI.csproj └── Program.cs ├── Core ├── Aspects │ └── Autofac │ │ ├── Caching │ │ ├── CacheAspect.cs │ │ └── CacheRemoveAspect.cs │ │ ├── Performance │ │ └── PerformanceAspect.cs │ │ ├── Transaction │ │ └── TransactionScopeAspect.cs │ │ └── Validation │ │ └── ValidationAspect.cs ├── Core.csproj ├── CrossCuttingConcerns │ ├── Caching │ │ ├── ICacheManager.cs │ │ └── Microsoft │ │ │ └── MemoryCacheManager.cs │ └── Validation │ │ └── ValidationTool.cs ├── DataAccess │ ├── EntityFramework │ │ └── EfEntityRepositoryBase.cs │ └── IEntityRepository.cs ├── DependencyResolvers │ └── CoreModule.cs ├── Entities │ ├── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ └── UserOperationClaim.cs │ ├── IDto.cs │ └── IEntity.cs ├── Exceptions │ ├── FileHelperCustomException.cs │ └── ICustomException.cs ├── Extensions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionExtensions.cs └── Utilities │ ├── Business │ └── BusinessRules.cs │ ├── Helpers │ ├── FileHelper │ │ ├── FileHelperManager.cs │ │ └── IFileHelperService.cs │ └── GuidHelperr │ │ └── GuidHelper.cs │ ├── Interceptors │ ├── AspectInterceptorSelector.cs │ ├── MethodInterception.cs │ └── MethodInterceptionBaseAttribute.cs │ ├── IoC │ ├── ICoreModule.cs │ └── ServiceTool.cs │ ├── Results │ ├── DataResult.cs │ ├── ErrorDataResult.cs │ ├── ErrorResult.cs │ ├── IDataResult.cs │ ├── IResult.cs │ ├── Result.cs │ ├── SuccessDataResult.cs │ └── SuccessResult.cs │ └── Security │ ├── Encryption │ ├── SecurityKeyHelper.cs │ └── SigningCredentialsHelper.cs │ ├── Hashing │ └── HashingHelper.cs │ └── JWT │ ├── AccessToken.cs │ ├── ITokenHelper.cs │ ├── JwtHelper.cs │ └── TokenOptions.cs ├── DataAccess ├── Abstract │ ├── IBrandDal.cs │ ├── ICarDal.cs │ ├── ICarImageDal.cs │ ├── IColorDal.cs │ ├── ICustomerDal.cs │ ├── IPaymentDal.cs │ ├── IRentalDal.cs │ └── IUserDal.cs ├── Concrete │ ├── EntityFramework │ │ ├── EfBrandDal.cs │ │ ├── EfCarDal.cs │ │ ├── EfCarImageDal.cs │ │ ├── EfColorDal.cs │ │ ├── EfCustomerDal.cs │ │ ├── EfPaymentDal.cs │ │ ├── EfRentalDal.cs │ │ ├── EfUserDal.cs │ │ └── RentACarContext.cs │ └── InMemory │ │ └── InMemoryCarDal.cs └── DataAccess.csproj ├── Entities ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarImage.cs │ ├── Color.cs │ ├── Customer.cs │ ├── Payment.cs │ └── Rental.cs ├── DTOs │ ├── CarDetailDto.cs │ ├── LoginDTO.cs │ ├── RegisterDTO.cs │ ├── RentalDetailDto.cs │ ├── UpdateEmailDTO.cs │ ├── UpdateFirstAndLastNameDTO.cs │ ├── UpdatePasswordDTO.cs │ └── UserDTO.cs └── Entities.csproj ├── README.md ├── RentACar.sln └── WebAPI ├── Controllers ├── AuthController.cs ├── BrandsController.cs ├── CarImagesController.cs ├── CarsController.cs ├── ColorsController.cs ├── CustomersController.cs ├── PaymentsController.cs ├── RentalsController.cs └── UsersController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot └── Images ├── 11743b16-c95e-4c25-b522-4fa6527c8f64.jpg ├── 123d45e4-9ffa-4704-a705-9bb251bcf0a6.jpg ├── 1949674e-ae24-489d-ba7a-d7cc957bfc36.jpg ├── 3fd2d715-30f5-4560-816d-bc5b842c99f3.jpg ├── 9711d505-4033-4622-92d6-8dba59531e40.jpg ├── 9f54e0e7-a305-4ee1-9914-a0b9edf7156a.jpg ├── DefaultImage.jpg ├── e60f03fe-7ed8-4d5c-a6e3-56d62b689c45.jpg └── f64914b6-18a7-481a-9378-f69df3636605.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/ICarImageService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IPaymentService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/BusinessAspects/AutoFac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/BusinessAspects/AutoFac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/CarImageManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/PaymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/PaymentManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Constrants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/Constrants/Messages.cs -------------------------------------------------------------------------------- /Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarImageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/CarImageValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/FVCustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/FVCustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/FVPaymentValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/FVPaymentValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Business/ValidationRules/FluentValidation/UserValidator.cs -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Aspects/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Exceptions/FileHelperCustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Exceptions/FileHelperCustomException.cs -------------------------------------------------------------------------------- /Core/Exceptions/ICustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Exceptions/ICustomException.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/FileHelper/FileHelperManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Helpers/FileHelper/FileHelperManager.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/FileHelper/IFileHelperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Helpers/FileHelper/IFileHelperService.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/GuidHelperr/GuidHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Helpers/GuidHelperr/GuidHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/ICarDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/ICarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/ICustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IPaymentDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/IPaymentDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/IRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfPaymentDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfPaymentDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/RentACarContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/EntityFramework/RentACarContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/Concrete/InMemory/InMemoryCarDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entities/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Car.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/CarImage.cs -------------------------------------------------------------------------------- /Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /Entities/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entities/Concrete/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Payment.cs -------------------------------------------------------------------------------- /Entities/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/LoginDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/LoginDTO.cs -------------------------------------------------------------------------------- /Entities/DTOs/RegisterDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/RegisterDTO.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UpdateEmailDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/UpdateEmailDTO.cs -------------------------------------------------------------------------------- /Entities/DTOs/UpdateFirstAndLastNameDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/UpdateFirstAndLastNameDTO.cs -------------------------------------------------------------------------------- /Entities/DTOs/UpdatePasswordDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/UpdatePasswordDTO.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/DTOs/UserDTO.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/README.md -------------------------------------------------------------------------------- /RentACar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/RentACar.sln -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/CarImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/PaymentsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/11743b16-c95e-4c25-b522-4fa6527c8f64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/11743b16-c95e-4c25-b522-4fa6527c8f64.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/123d45e4-9ffa-4704-a705-9bb251bcf0a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/123d45e4-9ffa-4704-a705-9bb251bcf0a6.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/1949674e-ae24-489d-ba7a-d7cc957bfc36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/1949674e-ae24-489d-ba7a-d7cc957bfc36.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/3fd2d715-30f5-4560-816d-bc5b842c99f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/3fd2d715-30f5-4560-816d-bc5b842c99f3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/9711d505-4033-4622-92d6-8dba59531e40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/9711d505-4033-4622-92d6-8dba59531e40.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/9f54e0e7-a305-4ee1-9914-a0b9edf7156a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/9f54e0e7-a305-4ee1-9914-a0b9edf7156a.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/DefaultImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/DefaultImage.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/e60f03fe-7ed8-4d5c-a6e3-56d62b689c45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/e60f03fe-7ed8-4d5c-a6e3-56d62b689c45.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/f64914b6-18a7-481a-9378-f69df3636605.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fateehs/RentACar-Backend/HEAD/WebAPI/wwwroot/Images/f64914b6-18a7-481a-9378-f69df3636605.jpg --------------------------------------------------------------------------------