├── .gitattributes ├── .gitignore ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarImageService.cs │ ├── ICarService.cs │ ├── IColorService.cs │ ├── ICustomerService.cs │ ├── IPaymentService.cs │ ├── IRentalService.cs │ ├── IService.cs │ └── IUserService.cs ├── Business.csproj ├── BusinessAspects │ └── Autofac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarImageManager.cs │ ├── CarManager.cs │ ├── ColorManager.cs │ ├── CustomerManager.cs │ ├── PaymentManager.cs │ ├── RentalManager.cs │ └── UserManager.cs ├── Constans │ └── Messages.cs ├── DependencyResolvers │ └── Autofac │ │ └── AutofacBusinessModule.cs └── ValidationRules │ └── FluentValidation │ ├── BrandValidator.cs │ ├── CarValidator.cs │ ├── ColorValidator.cs │ ├── CustomerValidator.cs │ └── RentalValidator.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 │ └── NHibernate │ │ ├── NHibernateHelper.cs │ │ └── NhEntityRepositoryBase.cs ├── DependencyResolvers │ └── CoreModule.cs ├── Entities │ ├── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ └── UserOperationClaim.cs │ ├── IDto.cs │ └── IEntity.cs ├── Extensions │ ├── ClaimExtensions │ │ ├── ClaimExtensions.cs │ │ └── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionExtensions │ │ └── ServiceCollectionExtensions.cs └── Utilities │ ├── Business │ └── BusinessRules.cs │ ├── 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 │ ├── IPaymentDal.cs │ ├── IRentalDal.cs │ └── IUserDal.cs ├── Concrete │ ├── EntityFramework │ │ ├── EfBrandDal.cs │ │ ├── EfCarDal.cs │ │ ├── EfCarImageDal.cs │ │ ├── EfColorDal.cs │ │ ├── EfCustomerDal.cs │ │ ├── EfRentalDal.cs │ │ ├── EfUserDal.cs │ │ ├── EfpaymentDal.cs │ │ └── ReCapDbContext.cs │ └── InMemory │ │ └── InMemoryCarDal.cs └── DataAccess.csproj ├── Entitites ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarImage.cs │ ├── Color.cs │ ├── Customer.cs │ ├── Payment.cs │ └── Rental.cs ├── DTOs │ ├── CarDetailDto.cs │ ├── CarImageDto.cs │ ├── CustomerDetailDto.cs │ ├── RentalDetailDto.cs │ ├── UserForLoginDto.cs │ ├── UserForRegisterDto.cs │ └── UserForUpdateDto.cs └── Entities.csproj ├── README.md ├── ReCapProject.sln ├── WebAPI ├── Controllers │ ├── AuthController.cs │ ├── BrandsController.cs │ ├── CarImagesController.cs │ ├── CarsController.cs │ ├── ColorsController.cs │ ├── CustomersController.cs │ ├── PaymentsController.cs │ ├── RentalsController.cs │ └── WeatherForecastController.cs ├── Models │ └── FileUpload.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ └── Images │ ├── 0382562b-0254-44cc-9fa8-dfb0de518cee.jpg │ ├── 0cde4120-1666-4ef3-bcdb-cefd19e7bac6.jpg │ ├── 22af9b4c-3734-473e-84c2-459f227bfbc7.jpg │ ├── 2b64ad80-687c-4159-9051-70ceaba53f32.jpg │ ├── 3545029a-b4bc-4c28-94e1-500440604dd5.jpg │ ├── 43503724-c6d4-47b2-9bf8-cec7c2778dfe.jpg │ ├── 47b51f47-6da2-4d14-8e2a-12b84dfbda9c.jpg │ ├── 515637e0-08c3-4ebf-83d1-34c28bbda616.png │ ├── 51b90de5-1b54-444b-91c4-dae5452a5201.png │ ├── 570c44dc-1735-411a-bd3e-f92589d0c76c.jpg │ ├── 676b35e9-d93a-4249-bade-8b516474d5d0_3_15_2021.jpg │ ├── 6807fd4e-f0b2-434b-af9f-88763184ecc0.jpg │ ├── 69dae84d-4ec1-4f66-85c2-2e660cea31d7.jpg │ ├── 770fe12d-58f2-437f-8ada-f0e14999ff70.png │ ├── 80d99d38-6209-474d-ad43-4ff74675beb5.jpg │ ├── 98d7a267-4b3c-4a86-bc02-570918689818.jpg │ ├── a072185d-e44d-4f9b-9a27-27e918aa5881.jpg │ ├── ae5763e5-8f52-43b2-8daa-ab971732dae8_3_15_2021.jpg │ ├── b172d4e3-038f-4ff1-8b35-169e6f25344f.png │ ├── c5c9688b-d471-4d02-9e43-a36c5f15b95d.jpg │ ├── cbdae83e-0944-4316-a10c-6af9243eb15a.jpg │ ├── dc25c4fb-3cdd-48ae-aacf-6c31d50e52c0.png │ ├── e4e23175-05e2-4d9f-b6d7-6fc90a058075.png │ ├── ec7534ac-9a99-4bdc-baa8-e9b82557c3a8.jpg │ ├── ec9e38af-b992-4066-a459-e90bfe9f5dcd.png │ └── eeafb56d-f92a-4d81-bfe0-0f5fd267469b.jpg ├── dbo.Users.data.sql └── tables.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/.gitignore -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/ICarImageService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IPaymentService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/BusinessAspects/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/BusinessAspects/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/CarImageManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/PaymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/PaymentManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Constans/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/Constans/Messages.cs -------------------------------------------------------------------------------- /Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/CustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Aspects/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DataAccess/NHibernate/NHibernateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/DataAccess/NHibernate/NHibernateHelper.cs -------------------------------------------------------------------------------- /Core/DataAccess/NHibernate/NhEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/DataAccess/NHibernate/NhEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ClaimExtensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ClaimExtensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ServiceCollectionExtensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Extensions/ServiceCollectionExtensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Helper/FileHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/ICarDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/ICarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/ICustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IPaymentDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/IPaymentDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/IRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfCarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfCustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfpaymentDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/EfpaymentDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/ReCapDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/EntityFramework/ReCapDbContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/Concrete/InMemory/InMemoryCarDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entitites/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entitites/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Car.cs -------------------------------------------------------------------------------- /Entitites/Concrete/CarImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/CarImage.cs -------------------------------------------------------------------------------- /Entitites/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Color.cs -------------------------------------------------------------------------------- /Entitites/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entitites/Concrete/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Payment.cs -------------------------------------------------------------------------------- /Entitites/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entitites/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/CarImageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/CarImageDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/CustomerDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/CustomerDetailDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/UserForLoginDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/UserForRegisterDto.cs -------------------------------------------------------------------------------- /Entitites/DTOs/UserForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/DTOs/UserForUpdateDto.cs -------------------------------------------------------------------------------- /Entitites/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/Entitites/Entities.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/README.md -------------------------------------------------------------------------------- /ReCapProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/ReCapProject.sln -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/CarImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/PaymentsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /WebAPI/Models/FileUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Models/FileUpload.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/0382562b-0254-44cc-9fa8-dfb0de518cee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/0382562b-0254-44cc-9fa8-dfb0de518cee.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/0cde4120-1666-4ef3-bcdb-cefd19e7bac6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/0cde4120-1666-4ef3-bcdb-cefd19e7bac6.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/22af9b4c-3734-473e-84c2-459f227bfbc7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/22af9b4c-3734-473e-84c2-459f227bfbc7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/2b64ad80-687c-4159-9051-70ceaba53f32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/2b64ad80-687c-4159-9051-70ceaba53f32.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/3545029a-b4bc-4c28-94e1-500440604dd5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/3545029a-b4bc-4c28-94e1-500440604dd5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/43503724-c6d4-47b2-9bf8-cec7c2778dfe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/43503724-c6d4-47b2-9bf8-cec7c2778dfe.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/47b51f47-6da2-4d14-8e2a-12b84dfbda9c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/47b51f47-6da2-4d14-8e2a-12b84dfbda9c.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/515637e0-08c3-4ebf-83d1-34c28bbda616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/515637e0-08c3-4ebf-83d1-34c28bbda616.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/51b90de5-1b54-444b-91c4-dae5452a5201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/51b90de5-1b54-444b-91c4-dae5452a5201.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/570c44dc-1735-411a-bd3e-f92589d0c76c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/570c44dc-1735-411a-bd3e-f92589d0c76c.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/676b35e9-d93a-4249-bade-8b516474d5d0_3_15_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/676b35e9-d93a-4249-bade-8b516474d5d0_3_15_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/6807fd4e-f0b2-434b-af9f-88763184ecc0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/6807fd4e-f0b2-434b-af9f-88763184ecc0.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/69dae84d-4ec1-4f66-85c2-2e660cea31d7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/69dae84d-4ec1-4f66-85c2-2e660cea31d7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/770fe12d-58f2-437f-8ada-f0e14999ff70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/770fe12d-58f2-437f-8ada-f0e14999ff70.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/80d99d38-6209-474d-ad43-4ff74675beb5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/80d99d38-6209-474d-ad43-4ff74675beb5.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/98d7a267-4b3c-4a86-bc02-570918689818.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/98d7a267-4b3c-4a86-bc02-570918689818.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/a072185d-e44d-4f9b-9a27-27e918aa5881.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/a072185d-e44d-4f9b-9a27-27e918aa5881.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ae5763e5-8f52-43b2-8daa-ab971732dae8_3_15_2021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/ae5763e5-8f52-43b2-8daa-ab971732dae8_3_15_2021.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/b172d4e3-038f-4ff1-8b35-169e6f25344f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/b172d4e3-038f-4ff1-8b35-169e6f25344f.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/c5c9688b-d471-4d02-9e43-a36c5f15b95d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/c5c9688b-d471-4d02-9e43-a36c5f15b95d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/cbdae83e-0944-4316-a10c-6af9243eb15a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/cbdae83e-0944-4316-a10c-6af9243eb15a.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/dc25c4fb-3cdd-48ae-aacf-6c31d50e52c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/dc25c4fb-3cdd-48ae-aacf-6c31d50e52c0.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/e4e23175-05e2-4d9f-b6d7-6fc90a058075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/e4e23175-05e2-4d9f-b6d7-6fc90a058075.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ec7534ac-9a99-4bdc-baa8-e9b82557c3a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/ec7534ac-9a99-4bdc-baa8-e9b82557c3a8.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/ec9e38af-b992-4066-a459-e90bfe9f5dcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/ec9e38af-b992-4066-a459-e90bfe9f5dcd.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/eeafb56d-f92a-4d81-bfe0-0f5fd267469b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/WebAPI/wwwroot/Images/eeafb56d-f92a-4d81-bfe0-0f5fd267469b.jpg -------------------------------------------------------------------------------- /dbo.Users.data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/dbo.Users.data.sql -------------------------------------------------------------------------------- /tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aycakdemr/RentACarProject/HEAD/tables.sql --------------------------------------------------------------------------------