├── .gitattributes ├── .gitignore ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarImageService.cs │ ├── ICarService.cs │ ├── IColorService.cs │ ├── ICustomerService.cs │ ├── IDebitCardService.cs │ ├── IOperationClaimService.cs │ ├── IRentalService.cs │ ├── ISaveCardService.cs │ ├── IUserOperationClaimService.cs │ └── IUserService.cs ├── Business.csproj ├── BusinessAspects │ └── Autofac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarImageManager.cs │ ├── CarManager.cs │ ├── ColorManager.cs │ ├── CustomerManager.cs │ ├── DebitCardManager.cs │ ├── OperationClaimManager.cs │ ├── RentalManager.cs │ ├── SaveCardManager.cs │ ├── UserManager.cs │ └── UserOperationClaimManager.cs ├── Constants │ └── Messages.cs ├── DependencyResolver │ └── Autofac │ │ └── AutofacBusinessModule.cs └── ValidationRules │ └── FluentValidation │ ├── BrandValidator.cs │ ├── CarImageValidator.cs │ ├── CarValidator.cs │ ├── ColorValidator.cs │ ├── CustomerValidator.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 │ ├── Abstract │ │ ├── IDto.cs │ │ └── IEntity.cs │ └── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ └── UserOperationClaim.cs ├── Extentions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionExtentions.cs └── Utilities │ ├── Business │ └── BusinessRules.cs │ ├── File Helper │ └── 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 │ ├── 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 │ ├── IDebitCardDal.cs │ ├── IOperationClaimDal.cs │ ├── IRentalDAL.cs │ ├── ISaveCardDal.cs │ ├── IUserDAL.cs │ └── IUserOperationClaimDal.cs ├── Concrete │ ├── EntityFramework │ │ ├── Context │ │ │ └── RentACarContext.cs │ │ ├── EFBrandDAL.cs │ │ ├── EFCarDAL.cs │ │ ├── EFColorDAL.cs │ │ ├── EFCustomerDAL.cs │ │ ├── EFUserDAL.cs │ │ ├── EfCarImageDal.cs │ │ ├── EfDebitCardDal.cs │ │ ├── EfOperationClaimDal.cs │ │ ├── EfRentalDal.cs │ │ ├── EfSaveCardDal.cs │ │ └── EfUserOperationClaimDal.cs │ └── InMemory │ │ └── InMemoryProductDAL.cs └── DataAccess.csproj ├── Entities ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarImage.cs │ ├── Color.cs │ ├── Customer.cs │ ├── DebitCard.cs │ ├── Rental.cs │ └── SavedDebitCard.cs ├── DTOs │ ├── CarAndImagesDto.cs │ ├── CarDetailDto.cs │ ├── CarImageDto.cs │ ├── ChangePasswordDto.cs │ ├── CustomerDetailDto.cs │ ├── ForgotPasswordDto.cs │ ├── PaymentDto.cs │ ├── RentalDetailDto.cs │ ├── UserForLoginDto.cs │ └── UserForRegisterDto.cs └── Entities.csproj ├── README.md ├── ReCapProject.sln ├── WebAPI ├── Controllers │ ├── AuthController.cs │ ├── BrandsController.cs │ ├── CarImagesController.cs │ ├── CarsController.cs │ ├── ColorsController.cs │ ├── CustomersController.cs │ ├── DebitCardsController.cs │ ├── OperationsController.cs │ ├── RentalsController.cs │ ├── SaveCardController.cs │ ├── UserOperationClaimsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json ├── package-lock.json ├── package.json └── wwwroot │ └── Images │ ├── 02c24f11-6b2c-4150-a2db-255b9af8c8d8.jpg │ ├── 05d63cc1-5b56-4385-ad0f-30bb3d2e03bf.jpg │ ├── 09133998-a32d-4232-a2a7-5f015c92c6f4.jpg │ ├── 0d09f153-1747-4a6f-b6ba-8d6b8601fc89.jpg │ ├── 140d1b19-7870-4a5f-a8b8-bcc6319a15ae.jpg │ ├── 15eb8962-9d66-4d23-8c03-3113ec40def9.jpg │ ├── 1af49bbb-aac4-4a8c-8299-3dbe2191d9e2.jpg │ ├── 1ebc9dce-bad7-46b5-8afa-90653fd9e551.jpg │ ├── 269e7a3b-cc0e-47ff-8bfe-f84992ddd483.jpg │ ├── 2793fc6e-b64c-44ab-a58b-3ea2182f7bb3.jpg │ ├── 293669d3-0bcd-44dd-97d0-c6333ee63919.jpg │ ├── 30057621-7b40-4a04-8ccb-04e94d67087e.jpg │ ├── 3d2c5641-0f2d-4c27-9d5d-8319a48bf66d.jpg │ ├── 3df48295-95d0-4001-8e33-416d0649b9f9.jpg │ ├── 4343ded4-ca1b-4a76-b0d3-82851f9eeb52.jpg │ ├── 46abee44-d670-4aa4-b758-79f1b4c1cce9.jpg │ ├── 496eefac-9447-45b2-82c9-9773b08ec2bf.jpg │ ├── 4da82cc5-930e-47ef-9cf0-7f85f7009357.jpg │ ├── 502d62e5-6b19-4d99-9483-828dd53630aa.jpg │ ├── 5204c6d3-dbe3-41eb-a50d-9f608904bac5.jpg │ ├── 523632ca-056a-4979-81e4-54d8edaf6aba.jpg │ ├── 527786ec-0658-41df-9c47-db95cb247124.jpg │ ├── 53535d3e-450a-4029-b3ff-d1e9e9b4c8b7.jpg │ ├── 6116d311-27eb-4d65-bbfa-09275d0b15ba.jpg │ ├── 64d8a926-e379-404b-aa34-a00dce3d1538.jpg │ ├── 686bfec1-4a82-4e41-940f-f075ebec3af1.jpg │ ├── 693f0d6e-27aa-4260-83b0-d3274f324f3f.jpg │ ├── 6af7dcfb-0682-4849-bc3c-d1cb36c11f25.jpg │ ├── 6b6eef12-30d5-491e-b47e-f0f0179d774d.jpg │ ├── 6b73e424-8efb-40e5-bb81-0c6057db41e7.png │ ├── 6d8b06b0-7d72-4d97-99ac-7dc0481233f3.jpg │ ├── 6d9fca48-5fee-4248-983a-6f2dd4dcb144.jpg │ ├── 7245ca72-5a04-4c0a-b9f4-243f6f50474a.png │ ├── 72d1a110-733e-4ac8-b646-048a9d4c809e.jpg │ ├── 74a2f537-edf6-46e1-a006-526da0db9181.jpg │ ├── 762eb62d-bc9e-40e1-9193-39e106a40035.jpg │ ├── 77fb31c1-35bc-4fbc-9088-93682bb00d6d.jpg │ ├── 7e9ef629-7491-4945-85f4-754d0a8688e3.jpg │ ├── 7fec7976-c89d-45db-84ba-32d96b272056.jpg │ ├── 83126d60-2af5-416d-9f10-b2a2d83fd33c.jpg │ ├── 89f0803d-8281-475e-b274-0dfb49b9f607.jpg │ ├── 9520bc28-7eeb-4ed2-8980-458ee44623c6.jpg │ ├── 987c0109-c833-4be5-9cba-4ec5334f23f7.jpg │ ├── 9d95f895-00fd-4fa1-a535-b912b5af1495.jpg │ ├── a25053e2-5769-4a34-bd93-a5a84f5452ae.jpg │ ├── a4bc299e-7da9-4219-a716-2294217b6ea9.jpg │ ├── a4ded232-67d5-4013-a72c-77bd661dcdb5.jpg │ ├── a8d4f4d1-5d0d-4660-8364-23848ea58376.jpg │ ├── aa050835-bade-4859-a356-acdbe4c32589.jpg │ ├── ac6b8864-895b-441f-bbca-d2ae07dfdf57.jpg │ ├── b79b294a-cdac-4176-8811-953622bca929.jpg │ ├── c0f569f3-4338-4336-9b66-44fe9c715f04.jpg │ ├── c73df383-599d-4323-864a-a892b3b1e235.jpg │ ├── c8dabdd8-11ae-4b79-9c47-a03056e4a559.jpg │ ├── ca5c61ff-8753-4f64-af46-d3b3d9f788f0.jpg │ ├── ce29b22f-03af-40ae-b5e2-088fd75d0831.jpg │ ├── ce5a3f7d-a4cf-418d-b448-16026d0730e4.jpg │ ├── cffaeecd-300b-4431-9b90-02c28b1ab4f4.jpg │ ├── d3c0fe24-eac0-4a5a-8b04-6957c17a6ade.jpg │ ├── d4b5c02f-ac3d-4f6d-82e2-67e395042b00.jpg │ ├── d6005ff1-5eeb-4d8c-b81c-29d8daf2788e.jpg │ ├── dead5a9b-746c-4002-9ca5-8222fc169b16.jpg │ ├── dee1f47a-fde5-40ca-a05d-4082a26fd90e.jpg │ ├── default.jpg │ ├── dfa30cca-9dae-47e6-9e0e-3b12810f9db1.jpg │ ├── e4ceedc7-a56e-4206-b1b2-e110d1fc4755.jpg │ ├── e5041d40-5647-4655-bccd-f8f0862ece47.jpg │ ├── ec0a3621-67c5-4ffb-b2f9-28667d8ec98a.jpg │ ├── ef81fb18-5daf-4a5b-b7fa-4cb214b812e5.jpg │ ├── f236c85a-9824-4cc9-9ab3-d9cea102a0ad.jpg │ ├── f26101ae-c5ad-4aa6-9729-c990a16e92ac.jpg │ ├── f2eec02b-1fe7-4ef3-a501-37fc9c1c5acc.jpg │ ├── f35a1469-f97a-450d-afa3-14e8d7f32e6b.jpg │ ├── fd9b765a-a269-4317-a770-3675ec315075.jpg │ ├── fdc05373-5158-4d0a-9282-5359bc87a8f7.jpg │ └── fe215d08-5ee5-496f-8d83-e3557c50d613.jpg └── rentacar.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/.gitignore -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/ICarImageService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IDebitCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IDebitCardService.cs -------------------------------------------------------------------------------- /Business/Abstract/IOperationClaimService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IOperationClaimService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/ISaveCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/ISaveCardService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserOperationClaimService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IUserOperationClaimService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/BusinessAspects/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/BusinessAspects/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/CarImageManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/DebitCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/DebitCardManager.cs -------------------------------------------------------------------------------- /Business/Concrete/OperationClaimManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/OperationClaimManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/SaveCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/SaveCardManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserOperationClaimManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Concrete/UserOperationClaimManager.cs -------------------------------------------------------------------------------- /Business/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/Constants/Messages.cs -------------------------------------------------------------------------------- /Business/DependencyResolver/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/DependencyResolver/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarImageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/CarImageValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/CustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/UserValidator.cs -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Aspects/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Abstract/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Entities/Abstract/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/Abstract/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Entities/Abstract/IEntity.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Extentions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extentions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extentions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ServiceCollectionExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Extentions/ServiceCollectionExtentions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/File Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/File Helper/FileHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Jwt/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Jwt/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Jwt/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Jwt/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Jwt/JWTHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Jwt/JWTHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Jwt/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Core/Utilities/Security/Jwt/TokenOptions.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IBrandDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/ICarDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/ICarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IColorDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/ICustomerDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IDebitCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IDebitCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IRentalDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ISaveCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/ISaveCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IUserDAL.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Abstract/IUserOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Context/RentACarContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/Context/RentACarContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFBrandDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EFBrandDAL.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFCarDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EFCarDAL.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFColorDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EFColorDAL.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFCustomerDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EFCustomerDAL.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EFUserDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EFUserDAL.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfCarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfDebitCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfDebitCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfSaveCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfSaveCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfUserOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfUserOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryProductDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/Concrete/InMemory/InMemoryProductDAL.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entities/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/Car.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/CarImage.cs -------------------------------------------------------------------------------- /Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /Entities/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entities/Concrete/DebitCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/DebitCard.cs -------------------------------------------------------------------------------- /Entities/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entities/Concrete/SavedDebitCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Concrete/SavedDebitCard.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarAndImagesDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/CarAndImagesDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarImageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/CarImageDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/ChangePasswordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/ChangePasswordDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CustomerDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/CustomerDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/ForgotPasswordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/ForgotPasswordDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/PaymentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/PaymentDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/UserForLoginDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/DTOs/UserForRegisterDto.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/README.md -------------------------------------------------------------------------------- /ReCapProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/ReCapProject.sln -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/CarImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/DebitCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/DebitCardsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/OperationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/OperationsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/SaveCardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/SaveCardController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UserOperationClaimsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/UserOperationClaimsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/package-lock.json -------------------------------------------------------------------------------- /WebAPI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/package.json -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/02c24f11-6b2c-4150-a2db-255b9af8c8d8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/02c24f11-6b2c-4150-a2db-255b9af8c8d8.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/05d63cc1-5b56-4385-ad0f-30bb3d2e03bf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/05d63cc1-5b56-4385-ad0f-30bb3d2e03bf.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/09133998-a32d-4232-a2a7-5f015c92c6f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/09133998-a32d-4232-a2a7-5f015c92c6f4.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/0d09f153-1747-4a6f-b6ba-8d6b8601fc89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/0d09f153-1747-4a6f-b6ba-8d6b8601fc89.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/140d1b19-7870-4a5f-a8b8-bcc6319a15ae.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/140d1b19-7870-4a5f-a8b8-bcc6319a15ae.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/15eb8962-9d66-4d23-8c03-3113ec40def9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/15eb8962-9d66-4d23-8c03-3113ec40def9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/1af49bbb-aac4-4a8c-8299-3dbe2191d9e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/1af49bbb-aac4-4a8c-8299-3dbe2191d9e2.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/1ebc9dce-bad7-46b5-8afa-90653fd9e551.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/1ebc9dce-bad7-46b5-8afa-90653fd9e551.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/269e7a3b-cc0e-47ff-8bfe-f84992ddd483.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/269e7a3b-cc0e-47ff-8bfe-f84992ddd483.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/2793fc6e-b64c-44ab-a58b-3ea2182f7bb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/2793fc6e-b64c-44ab-a58b-3ea2182f7bb3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/293669d3-0bcd-44dd-97d0-c6333ee63919.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/293669d3-0bcd-44dd-97d0-c6333ee63919.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/30057621-7b40-4a04-8ccb-04e94d67087e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/30057621-7b40-4a04-8ccb-04e94d67087e.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/3d2c5641-0f2d-4c27-9d5d-8319a48bf66d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/3d2c5641-0f2d-4c27-9d5d-8319a48bf66d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/3df48295-95d0-4001-8e33-416d0649b9f9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/3df48295-95d0-4001-8e33-416d0649b9f9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/4343ded4-ca1b-4a76-b0d3-82851f9eeb52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/4343ded4-ca1b-4a76-b0d3-82851f9eeb52.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/46abee44-d670-4aa4-b758-79f1b4c1cce9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/46abee44-d670-4aa4-b758-79f1b4c1cce9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/496eefac-9447-45b2-82c9-9773b08ec2bf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/496eefac-9447-45b2-82c9-9773b08ec2bf.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/4da82cc5-930e-47ef-9cf0-7f85f7009357.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/4da82cc5-930e-47ef-9cf0-7f85f7009357.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/502d62e5-6b19-4d99-9483-828dd53630aa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/502d62e5-6b19-4d99-9483-828dd53630aa.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/5204c6d3-dbe3-41eb-a50d-9f608904bac5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/5204c6d3-dbe3-41eb-a50d-9f608904bac5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/523632ca-056a-4979-81e4-54d8edaf6aba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/523632ca-056a-4979-81e4-54d8edaf6aba.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/527786ec-0658-41df-9c47-db95cb247124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/527786ec-0658-41df-9c47-db95cb247124.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/53535d3e-450a-4029-b3ff-d1e9e9b4c8b7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/53535d3e-450a-4029-b3ff-d1e9e9b4c8b7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6116d311-27eb-4d65-bbfa-09275d0b15ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6116d311-27eb-4d65-bbfa-09275d0b15ba.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/64d8a926-e379-404b-aa34-a00dce3d1538.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/64d8a926-e379-404b-aa34-a00dce3d1538.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/686bfec1-4a82-4e41-940f-f075ebec3af1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/686bfec1-4a82-4e41-940f-f075ebec3af1.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/693f0d6e-27aa-4260-83b0-d3274f324f3f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/693f0d6e-27aa-4260-83b0-d3274f324f3f.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6af7dcfb-0682-4849-bc3c-d1cb36c11f25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6af7dcfb-0682-4849-bc3c-d1cb36c11f25.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6b6eef12-30d5-491e-b47e-f0f0179d774d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6b6eef12-30d5-491e-b47e-f0f0179d774d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6b73e424-8efb-40e5-bb81-0c6057db41e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6b73e424-8efb-40e5-bb81-0c6057db41e7.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6d8b06b0-7d72-4d97-99ac-7dc0481233f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6d8b06b0-7d72-4d97-99ac-7dc0481233f3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6d9fca48-5fee-4248-983a-6f2dd4dcb144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/6d9fca48-5fee-4248-983a-6f2dd4dcb144.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/7245ca72-5a04-4c0a-b9f4-243f6f50474a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/7245ca72-5a04-4c0a-b9f4-243f6f50474a.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/72d1a110-733e-4ac8-b646-048a9d4c809e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/72d1a110-733e-4ac8-b646-048a9d4c809e.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/74a2f537-edf6-46e1-a006-526da0db9181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/74a2f537-edf6-46e1-a006-526da0db9181.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/762eb62d-bc9e-40e1-9193-39e106a40035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/762eb62d-bc9e-40e1-9193-39e106a40035.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/77fb31c1-35bc-4fbc-9088-93682bb00d6d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/77fb31c1-35bc-4fbc-9088-93682bb00d6d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/7e9ef629-7491-4945-85f4-754d0a8688e3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/7e9ef629-7491-4945-85f4-754d0a8688e3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/7fec7976-c89d-45db-84ba-32d96b272056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/7fec7976-c89d-45db-84ba-32d96b272056.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/83126d60-2af5-416d-9f10-b2a2d83fd33c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/83126d60-2af5-416d-9f10-b2a2d83fd33c.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/89f0803d-8281-475e-b274-0dfb49b9f607.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/89f0803d-8281-475e-b274-0dfb49b9f607.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/9520bc28-7eeb-4ed2-8980-458ee44623c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/9520bc28-7eeb-4ed2-8980-458ee44623c6.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/987c0109-c833-4be5-9cba-4ec5334f23f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/987c0109-c833-4be5-9cba-4ec5334f23f7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/9d95f895-00fd-4fa1-a535-b912b5af1495.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/9d95f895-00fd-4fa1-a535-b912b5af1495.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/a25053e2-5769-4a34-bd93-a5a84f5452ae.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/a25053e2-5769-4a34-bd93-a5a84f5452ae.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/a4bc299e-7da9-4219-a716-2294217b6ea9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/a4bc299e-7da9-4219-a716-2294217b6ea9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/a4ded232-67d5-4013-a72c-77bd661dcdb5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/a4ded232-67d5-4013-a72c-77bd661dcdb5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/a8d4f4d1-5d0d-4660-8364-23848ea58376.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/a8d4f4d1-5d0d-4660-8364-23848ea58376.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/aa050835-bade-4859-a356-acdbe4c32589.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/aa050835-bade-4859-a356-acdbe4c32589.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ac6b8864-895b-441f-bbca-d2ae07dfdf57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ac6b8864-895b-441f-bbca-d2ae07dfdf57.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/b79b294a-cdac-4176-8811-953622bca929.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/b79b294a-cdac-4176-8811-953622bca929.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/c0f569f3-4338-4336-9b66-44fe9c715f04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/c0f569f3-4338-4336-9b66-44fe9c715f04.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/c73df383-599d-4323-864a-a892b3b1e235.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/c73df383-599d-4323-864a-a892b3b1e235.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/c8dabdd8-11ae-4b79-9c47-a03056e4a559.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/c8dabdd8-11ae-4b79-9c47-a03056e4a559.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ca5c61ff-8753-4f64-af46-d3b3d9f788f0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ca5c61ff-8753-4f64-af46-d3b3d9f788f0.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ce29b22f-03af-40ae-b5e2-088fd75d0831.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ce29b22f-03af-40ae-b5e2-088fd75d0831.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ce5a3f7d-a4cf-418d-b448-16026d0730e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ce5a3f7d-a4cf-418d-b448-16026d0730e4.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/cffaeecd-300b-4431-9b90-02c28b1ab4f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/cffaeecd-300b-4431-9b90-02c28b1ab4f4.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/d3c0fe24-eac0-4a5a-8b04-6957c17a6ade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/d3c0fe24-eac0-4a5a-8b04-6957c17a6ade.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/d4b5c02f-ac3d-4f6d-82e2-67e395042b00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/d4b5c02f-ac3d-4f6d-82e2-67e395042b00.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/d6005ff1-5eeb-4d8c-b81c-29d8daf2788e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/d6005ff1-5eeb-4d8c-b81c-29d8daf2788e.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/dead5a9b-746c-4002-9ca5-8222fc169b16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/dead5a9b-746c-4002-9ca5-8222fc169b16.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/dee1f47a-fde5-40ca-a05d-4082a26fd90e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/dee1f47a-fde5-40ca-a05d-4082a26fd90e.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/default.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/dfa30cca-9dae-47e6-9e0e-3b12810f9db1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/dfa30cca-9dae-47e6-9e0e-3b12810f9db1.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/e4ceedc7-a56e-4206-b1b2-e110d1fc4755.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/e4ceedc7-a56e-4206-b1b2-e110d1fc4755.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/e5041d40-5647-4655-bccd-f8f0862ece47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/e5041d40-5647-4655-bccd-f8f0862ece47.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ec0a3621-67c5-4ffb-b2f9-28667d8ec98a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ec0a3621-67c5-4ffb-b2f9-28667d8ec98a.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ef81fb18-5daf-4a5b-b7fa-4cb214b812e5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/ef81fb18-5daf-4a5b-b7fa-4cb214b812e5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/f236c85a-9824-4cc9-9ab3-d9cea102a0ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/f236c85a-9824-4cc9-9ab3-d9cea102a0ad.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/f26101ae-c5ad-4aa6-9729-c990a16e92ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/f26101ae-c5ad-4aa6-9729-c990a16e92ac.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/f2eec02b-1fe7-4ef3-a501-37fc9c1c5acc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/f2eec02b-1fe7-4ef3-a501-37fc9c1c5acc.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/f35a1469-f97a-450d-afa3-14e8d7f32e6b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/f35a1469-f97a-450d-afa3-14e8d7f32e6b.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/fd9b765a-a269-4317-a770-3675ec315075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/fd9b765a-a269-4317-a770-3675ec315075.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/fdc05373-5158-4d0a-9282-5359bc87a8f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/fdc05373-5158-4d0a-9282-5359bc87a8f7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/fe215d08-5ee5-496f-8d83-e3557c50d613.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/WebAPI/wwwroot/Images/fe215d08-5ee5-496f-8d83-e3557c50d613.jpg -------------------------------------------------------------------------------- /rentacar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfbilgin/RentACarProject/HEAD/rentacar.sql --------------------------------------------------------------------------------