├── .gitattributes ├── .gitignore ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarFindeksService.cs │ ├── ICarService.cs │ ├── ICategoryService.cs │ ├── IColorService.cs │ ├── ICustomerCreditCardService.cs │ ├── ICustomerService.cs │ ├── IFindeksService.cs │ ├── IImagesService.cs │ ├── IPaymentService.cs │ ├── IRentalService.cs │ └── IUserService.cs ├── Business.csproj ├── BusinessAspects │ └── Autofac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarFindeksManager.cs │ ├── CarManager.cs │ ├── CategoryManager.cs │ ├── ColorManager.cs │ ├── CustomerCreditCardManager.cs │ ├── CustomerManager.cs │ ├── FindeksManager.cs │ ├── ImagesManager.cs │ ├── PaymentManager.cs │ ├── RentalManager.cs │ └── UserManager.cs ├── Constants │ ├── ImagePath.cs │ └── Messages.cs ├── DepencyResolvers │ └── Autofac │ │ └── AutofacBusinessModule.cs └── ValidationRules │ └── FluentValidation │ ├── BrandValidator.cs │ ├── CarValidator.cs │ ├── CategoryValidator.cs │ ├── ColorValidator.cs │ ├── CustomerValidator.cs │ ├── ImagesValidator.cs │ ├── RentalValidator.cs │ └── UserValidator.cs ├── ConsoleIU ├── ConsoleIU.csproj └── Program.cs ├── ConsoleUI ├── ConsoleUI.csproj └── Program.cs ├── Core ├── Aspect │ └── 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 │ └── IFilterDto.cs ├── Extensions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionsExtensions.cs └── Utilities │ ├── Business │ └── BusinessRules.cs │ ├── Helpers │ └── FileHelper.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 │ ├── Encyption │ ├── SecurityKeyHelper.cs │ └── SigningCredentialsHelper.cs │ ├── Hashing │ └── HashingHelper.cs │ └── JWT │ ├── AccessToken.cs │ ├── ITokenHelper.cs │ ├── JwtHelper.cs │ └── TokenOptions.cs ├── DataAccess ├── Abstract │ ├── IBrandDal.cs │ ├── ICarDal.cs │ ├── ICarFindeksDal.cs │ ├── ICategoryDal.cs │ ├── IColorDal.cs │ ├── ICustomerCreditCardDal.cs │ ├── ICustomerDal.cs │ ├── IFakeCardDal.cs │ ├── IFindeksDal.cs │ ├── IImagesDal.cs │ ├── IRentalDal.cs │ ├── IUserDal.cs │ └── NorthwindContext.cs ├── Concrete │ ├── EntityFramework │ │ ├── EFBrandDal.cs │ │ ├── EFCarDal.cs │ │ ├── EFColorDal.cs │ │ ├── EFCustomerDal.cs │ │ ├── EFRentalDal.cs │ │ ├── EFUserDal.cs │ │ ├── EfCarFindeksDal.cs │ │ ├── EfCategoryDal.cs │ │ ├── EfCustomerCreditCardDal.cs │ │ ├── EfFakeCardDal.cs │ │ ├── EfFindeksDal.cs │ │ └── EfImagesDal.cs │ └── InMemory │ │ └── InMemoryCarDal.cs └── DataAccess.csproj ├── Entities ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarDto.cs │ ├── CarFindeks.cs │ ├── Category.cs │ ├── Color.cs │ ├── Customer.cs │ ├── CustomerCreditCard.cs │ ├── Findeks.cs │ ├── Images.cs │ ├── Payment.cs │ └── Rental.cs ├── DTOs │ ├── CarDetailDto.cs │ ├── CarDetailFilterDto.cs │ ├── CarFindeksDetailDto.cs │ ├── CustomerDetailDto.cs │ ├── FindeksDetailDto.cs │ ├── RentalDetailDto.cs │ ├── RentalPaymentDto.cs │ ├── UserForLoginDto.cs │ ├── UserForRegisterDto.cs │ └── UserForUpdateDto.cs └── Entities.csproj ├── ReCapProject.sln └── WebAPI ├── Controllers ├── AuthController.cs ├── BrandsController.cs ├── CarFindeksController.cs ├── CarsController.cs ├── CategoriesController.cs ├── ColorsController.cs ├── CustomerCreditCardController.cs ├── CustomersController.cs ├── FakeCardsController.cs ├── FindeksController.cs ├── ImagesController.cs ├── RentalsController.cs ├── UsersController.cs └── WeatherForecastController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── images ├── 0c221b05-17a8-41f6-8f09-04348eb13281.jpg ├── 17e6e573-c636-406d-805e-e0c1719678c5.jpg ├── 1aa49d3f-bbea-4dca-8cfd-6f3e8703feb3.jpg ├── 30bdefa3-b31d-4406-88fb-3330c55555ea.jpg ├── 3d27e3e9-5470-4edf-ab6c-929f600f9757.jpg ├── 4e402ee9-7362-4a4f-9f88-9a4b0a1bd572.jpg ├── 4ee6abfb-1953-46a5-80b0-9926ce09ae2f.jpg ├── 5d4f4c3b-eb2f-476e-8a2a-7897dff09aaa.jpg ├── 6de416b2-08dc-4291-bb85-83e23fd8d6ab.jpg ├── 744f1dea-54aa-416a-94ea-6bd834bb1e26.jpg ├── 8aeb08fb-abe9-4012-a6a8-652594d3336d.jpg ├── 93a02f3d-2526-4b19-8f09-fdff722d4c83.jpg ├── b1d5b4f7-5201-41d4-a989-3f3a3c069ba4.jpg ├── c16468f6-5c6b-4f54-ac8f-e278764ed882.jpg ├── d6961c1c-34fc-4dbd-aaf6-b169e55685e4.jpg ├── d81d6f42-d931-436c-8f00-67ff66d7018a.jpg ├── dc8cddec-1bad-4170-84d2-40e59089dade.jpg ├── de19d582-f83f-4f7c-966f-57da00590ea9.jpg ├── de4cd870-ca3b-426a-95f4-2382bee6c2c9.jpg ├── default.jpg ├── f929e616-c192-4ad9-b1ef-29363cf56502.jpg ├── fa727fd6-14cf-477a-a8c1-2d475af303c9.jpg ├── fac62590-80fd-4ff9-af93-f007587f7d76.jpg ├── fc292744-a2cd-4bf4-b26b-ec46c4a98709.jpg └── fc630a35-63b4-4f92-8d85-25136b0113d2.jpg └── uploads ├── 0139abd9-0d4e-4ad2-b90d-a8eb5d4f32de_3_14_2021.jpg ├── 08227bc5-608b-4656-a7cb-d793989da7fe_2_27_2021.jpg ├── 0b9ff6b5-1a71-4bbe-b9e9-eba441b924df_2_27_2021.jpg ├── 0edb5b3c-0953-422c-a111-b98347fe775f_2_27_2021.jpg ├── 1a16ffd0-c55a-4666-85eb-c36d300963da_3_14_2021.jpg ├── 305749cd-a450-444b-ad4a-edfd0be0fcd0_3_14_2021.jpg ├── 4089e744-67f2-4139-874b-602eefa2b648_2_27_2021.jpg ├── 426cea51-5a95-49a9-a5d2-2f2fa5533210_2_27_2021.jpg ├── 5892d1d9-a16e-4f26-821c-e77308e2d3b8_2_27_2021.jpg ├── 8c73db82-8f77-489e-9bb7-50cf69075772_3_14_2021.jpg ├── 9a333737-1047-408e-8164-4f8a0e18b5ea_3_14_2021.jpg ├── cc0a3c8c-f2e1-4b9a-901e-ed51330ea444_2_27_2021.jpg ├── d71e7abb-5d22-401d-8aaf-d871093dbb4a_2_27_2021.jpg ├── dba6b173-6cc6-4a15-b819-afdd6c3e74fd_3_14_2021.jpg ├── dfa08b58-aebe-43ef-8881-63b85027dbf1_2_27_2021.jpg ├── e1d73745-16da-4283-a5ee-e6ecb8c64e4e_3_14_2021.jpg ├── e58a802b-d21a-4678-80e1-05e2bb5449d5_2_27_2021.jpg ├── ef0541b4-5e5f-43b0-bf3a-158b75595e49_3_14_2021.jpg ├── ef7af2ad-2f2c-4463-b4d7-d0779c501a65_3_14_2021.jpg └── fb147322-eba7-478b-8096-bd328cda0e03_2_27_2021.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/.gitignore -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarFindeksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/ICarFindeksService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/ICategoryService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerCreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/ICustomerCreditCardService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IFindeksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IFindeksService.cs -------------------------------------------------------------------------------- /Business/Abstract/IImagesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IImagesService.cs -------------------------------------------------------------------------------- /Business/Abstract/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IPaymentService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/BusinessAspects/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/BusinessAspects/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarFindeksManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/CarFindeksManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CategoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/CategoryManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerCreditCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/CustomerCreditCardManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/FindeksManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/FindeksManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ImagesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/ImagesManager.cs -------------------------------------------------------------------------------- /Business/Concrete/PaymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/PaymentManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Constants/ImagePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Constants/ImagePath.cs -------------------------------------------------------------------------------- /Business/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/Constants/Messages.cs -------------------------------------------------------------------------------- /Business/DepencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/DepencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CategoryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/CategoryValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/CustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ImagesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/ImagesValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Business/ValidationRules/FluentValidation/UserValidator.cs -------------------------------------------------------------------------------- /ConsoleIU/ConsoleIU.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/ConsoleIU/ConsoleIU.csproj -------------------------------------------------------------------------------- /ConsoleIU/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/ConsoleIU/Program.cs -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /Core/Aspect/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Aspect/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspect/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Aspect/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspect/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Aspect/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspect/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Aspect/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspect/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Aspect/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Entities/IFilterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Entities/IFilterDto.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ServiceCollectionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Extensions/ServiceCollectionsExtensions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Helpers/FileHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encyption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/Encyption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encyption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/Encyption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/ICarDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarFindeksDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/ICarFindeksDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICategoryDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/ICategoryDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerCreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/ICustomerCreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/ICustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IFakeCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IFakeCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IFindeksDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IFindeksDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IImagesDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IImagesDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/NorthwindContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Abstract/NorthwindContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFCustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFCustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EFUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarFindeksDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfCarFindeksDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCategoryDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfCategoryDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCustomerCreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfCustomerCreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfFakeCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfFakeCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfFindeksDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfFindeksDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfImagesDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/EntityFramework/EfImagesDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/Concrete/InMemory/InMemoryCarDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entities/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Car.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/CarDto.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarFindeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/CarFindeks.cs -------------------------------------------------------------------------------- /Entities/Concrete/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Category.cs -------------------------------------------------------------------------------- /Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /Entities/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entities/Concrete/CustomerCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/CustomerCreditCard.cs -------------------------------------------------------------------------------- /Entities/Concrete/Findeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Findeks.cs -------------------------------------------------------------------------------- /Entities/Concrete/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Images.cs -------------------------------------------------------------------------------- /Entities/Concrete/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Payment.cs -------------------------------------------------------------------------------- /Entities/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailFilterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/CarDetailFilterDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarFindeksDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/CarFindeksDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CustomerDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/CustomerDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/FindeksDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/FindeksDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalPaymentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/RentalPaymentDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/UserForLoginDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/UserForRegisterDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/DTOs/UserForUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /ReCapProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/ReCapProject.sln -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarFindeksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/CarFindeksController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomerCreditCardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/CustomerCreditCardController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/FakeCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/FakeCardsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/FindeksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/FindeksController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/0c221b05-17a8-41f6-8f09-04348eb13281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/0c221b05-17a8-41f6-8f09-04348eb13281.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/17e6e573-c636-406d-805e-e0c1719678c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/17e6e573-c636-406d-805e-e0c1719678c5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/1aa49d3f-bbea-4dca-8cfd-6f3e8703feb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/1aa49d3f-bbea-4dca-8cfd-6f3e8703feb3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/30bdefa3-b31d-4406-88fb-3330c55555ea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/30bdefa3-b31d-4406-88fb-3330c55555ea.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/3d27e3e9-5470-4edf-ab6c-929f600f9757.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/3d27e3e9-5470-4edf-ab6c-929f600f9757.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/4e402ee9-7362-4a4f-9f88-9a4b0a1bd572.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/4e402ee9-7362-4a4f-9f88-9a4b0a1bd572.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/4ee6abfb-1953-46a5-80b0-9926ce09ae2f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/4ee6abfb-1953-46a5-80b0-9926ce09ae2f.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/5d4f4c3b-eb2f-476e-8a2a-7897dff09aaa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/5d4f4c3b-eb2f-476e-8a2a-7897dff09aaa.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/6de416b2-08dc-4291-bb85-83e23fd8d6ab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/6de416b2-08dc-4291-bb85-83e23fd8d6ab.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/744f1dea-54aa-416a-94ea-6bd834bb1e26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/744f1dea-54aa-416a-94ea-6bd834bb1e26.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/8aeb08fb-abe9-4012-a6a8-652594d3336d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/8aeb08fb-abe9-4012-a6a8-652594d3336d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/93a02f3d-2526-4b19-8f09-fdff722d4c83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/93a02f3d-2526-4b19-8f09-fdff722d4c83.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/b1d5b4f7-5201-41d4-a989-3f3a3c069ba4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/b1d5b4f7-5201-41d4-a989-3f3a3c069ba4.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/c16468f6-5c6b-4f54-ac8f-e278764ed882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/c16468f6-5c6b-4f54-ac8f-e278764ed882.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/d6961c1c-34fc-4dbd-aaf6-b169e55685e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/d6961c1c-34fc-4dbd-aaf6-b169e55685e4.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/d81d6f42-d931-436c-8f00-67ff66d7018a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/d81d6f42-d931-436c-8f00-67ff66d7018a.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/dc8cddec-1bad-4170-84d2-40e59089dade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/dc8cddec-1bad-4170-84d2-40e59089dade.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/de19d582-f83f-4f7c-966f-57da00590ea9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/de19d582-f83f-4f7c-966f-57da00590ea9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/de4cd870-ca3b-426a-95f4-2382bee6c2c9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/de4cd870-ca3b-426a-95f4-2382bee6c2c9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/default.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/f929e616-c192-4ad9-b1ef-29363cf56502.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/f929e616-c192-4ad9-b1ef-29363cf56502.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/fa727fd6-14cf-477a-a8c1-2d475af303c9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/fa727fd6-14cf-477a-a8c1-2d475af303c9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/fac62590-80fd-4ff9-af93-f007587f7d76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/fac62590-80fd-4ff9-af93-f007587f7d76.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/fc292744-a2cd-4bf4-b26b-ec46c4a98709.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/fc292744-a2cd-4bf4-b26b-ec46c4a98709.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/images/fc630a35-63b4-4f92-8d85-25136b0113d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/images/fc630a35-63b4-4f92-8d85-25136b0113d2.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/0139abd9-0d4e-4ad2-b90d-a8eb5d4f32de_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/0139abd9-0d4e-4ad2-b90d-a8eb5d4f32de_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/08227bc5-608b-4656-a7cb-d793989da7fe_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/08227bc5-608b-4656-a7cb-d793989da7fe_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/0b9ff6b5-1a71-4bbe-b9e9-eba441b924df_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/0b9ff6b5-1a71-4bbe-b9e9-eba441b924df_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/0edb5b3c-0953-422c-a111-b98347fe775f_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/0edb5b3c-0953-422c-a111-b98347fe775f_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/1a16ffd0-c55a-4666-85eb-c36d300963da_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/1a16ffd0-c55a-4666-85eb-c36d300963da_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/305749cd-a450-444b-ad4a-edfd0be0fcd0_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/305749cd-a450-444b-ad4a-edfd0be0fcd0_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/4089e744-67f2-4139-874b-602eefa2b648_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/4089e744-67f2-4139-874b-602eefa2b648_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/426cea51-5a95-49a9-a5d2-2f2fa5533210_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/426cea51-5a95-49a9-a5d2-2f2fa5533210_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/5892d1d9-a16e-4f26-821c-e77308e2d3b8_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/5892d1d9-a16e-4f26-821c-e77308e2d3b8_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/8c73db82-8f77-489e-9bb7-50cf69075772_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/8c73db82-8f77-489e-9bb7-50cf69075772_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/9a333737-1047-408e-8164-4f8a0e18b5ea_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/9a333737-1047-408e-8164-4f8a0e18b5ea_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/cc0a3c8c-f2e1-4b9a-901e-ed51330ea444_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/cc0a3c8c-f2e1-4b9a-901e-ed51330ea444_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/d71e7abb-5d22-401d-8aaf-d871093dbb4a_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/d71e7abb-5d22-401d-8aaf-d871093dbb4a_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/dba6b173-6cc6-4a15-b819-afdd6c3e74fd_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/dba6b173-6cc6-4a15-b819-afdd6c3e74fd_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/dfa08b58-aebe-43ef-8881-63b85027dbf1_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/dfa08b58-aebe-43ef-8881-63b85027dbf1_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/e1d73745-16da-4283-a5ee-e6ecb8c64e4e_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/e1d73745-16da-4283-a5ee-e6ecb8c64e4e_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/e58a802b-d21a-4678-80e1-05e2bb5449d5_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/e58a802b-d21a-4678-80e1-05e2bb5449d5_2_27_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/ef0541b4-5e5f-43b0-bf3a-158b75595e49_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/ef0541b4-5e5f-43b0-bf3a-158b75595e49_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/ef7af2ad-2f2c-4463-b4d7-d0779c501a65_3_14_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/ef7af2ad-2f2c-4463-b4d7-d0779c501a65_3_14_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/uploads/fb147322-eba7-478b-8096-bd328cda0e03_2_27_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevinctrn/RentACar/HEAD/WebAPI/wwwroot/uploads/fb147322-eba7-478b-8096-bd328cda0e03_2_27_2021.jpg --------------------------------------------------------------------------------