├── .gitignore ├── .vs ├── ReCapDemo │ └── DesignTimeBuild │ │ └── .dtbcache.v2 └── ReCapProject │ └── DesignTimeBuild │ └── .dtbcache.v2 ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarImageService.cs │ ├── ICarService.cs │ ├── IColorService.cs │ ├── ICreditCardService.cs │ ├── ICustomerService.cs │ ├── IRentalService.cs │ └── IUserService.cs ├── Business.csproj ├── BusinessAspect │ └── Autofac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarImageManager.cs │ ├── CarManager.cs │ ├── ColorManager.cs │ ├── CreditCardManager.cs │ ├── CustomerManager.cs │ ├── RentalManager.cs │ └── UserManager.cs ├── Constants │ └── Messages.cs ├── DependencyResolvers │ └── 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 │ │ ├── Exception │ │ └── ExceptionLogAspect.cs │ │ ├── Logging │ │ └── LogAspect.cs │ │ ├── Performance │ │ └── PerformanceAspect.cs │ │ ├── Transaction │ │ └── TransactionScopeAspect.cs │ │ └── Validation │ │ └── ValidationAspect.cs ├── Core.csproj ├── CrossCuttingConcerns │ ├── Caching │ │ ├── ICacheManager.cs │ │ └── Microsoft │ │ │ └── MemoryCacheManager.cs │ ├── Logging │ │ ├── Log4Net │ │ │ ├── Layouts │ │ │ │ └── JsonLayout.cs │ │ │ ├── LoggerServiceBase.cs │ │ │ ├── Loggers │ │ │ │ └── FileLogger.cs │ │ │ └── SerializableLogEvent.cs │ │ ├── LogDetail.cs │ │ ├── LogDetailWithException.cs │ │ └── LogParameter.cs │ └── Validation │ │ └── ValidationTool.cs ├── DataAccess │ ├── EntityFramework │ │ └── EfEntityRepositoryBase.cs │ └── IEntityRepository.cs ├── DependencyResolvers │ └── CoreModule.cs ├── Entities │ ├── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ └── UserOperationClaim.cs │ ├── IDto.cs │ └── IEntity.cs ├── Extensions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionExtensions.cs └── Utilities │ ├── Business │ └── BusinessRules.cs │ ├── Helpers │ └── FileHelper.cs │ ├── Interceptors │ ├── AspectInterceptorSelector.cs │ ├── MethodInterception.cs │ └── MethodInterceptionBaseAttribute.cs │ ├── IoC │ ├── ICoreModule.cs │ └── ServiceTool.cs │ ├── Messages │ └── AspectMessages.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 │ ├── ICreditCardDal.cs │ ├── ICustomerDal.cs │ ├── IRentalDal.cs │ └── IUserDal.cs ├── Concrete │ ├── EntityFramework │ │ ├── Context │ │ │ └── RentACarContext.cs │ │ └── Repository │ │ │ ├── EfBrandDal.cs │ │ │ ├── EfCarDal.cs │ │ │ ├── EfCarImageDal.cs │ │ │ ├── EfColorDal.cs │ │ │ ├── EfCreditCardDal.cs │ │ │ ├── EfCustomerDal.cs │ │ │ ├── EfRentalDal.cs │ │ │ └── EfUserDal.cs │ └── InMemory │ │ ├── InMemoryBrandDal.cs │ │ ├── InMemoryCarDal.cs │ │ └── InMemoryColorDal.cs └── DataAccess.csproj ├── Entities ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarImage.cs │ ├── Color.cs │ ├── CreditCard.cs │ ├── Customer.cs │ └── Rental.cs ├── DTOs │ ├── CarDetailDto.cs │ ├── RentalDetailDto.cs │ ├── UserForLoginDto.cs │ └── UserForRegisterDto.cs └── Entities.csproj ├── LICENSE.txt ├── README.md ├── ReCapProject.sln ├── RentACarSQLQuery.sql └── WebAPI ├── Controllers ├── AuthController.cs ├── BrandsController.cs ├── CarImagesController.cs ├── CarsController.cs ├── ColorsController.cs ├── CreditCardsController.cs ├── CustomersController.cs ├── RentalsController.cs └── UsersController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json ├── log4net.config └── wwwroot └── Images ├── bmw-beyaz.jpg ├── default.jpg ├── reno-mavi.jpg ├── tesla-beyaz.jpg └── tesla-mavi.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ReCapDemo/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/.vs/ReCapDemo/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/ReCapProject/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/.vs/ReCapProject/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/ICarImageService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/ICreditCardService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/BusinessAspect/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/BusinessAspect/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/CarImageManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CreditCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/CreditCardManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/Constants/Messages.cs -------------------------------------------------------------------------------- /Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarImageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/CarImageValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/CustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Business/ValidationRules/FluentValidation/UserValidator.cs -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Exception/ExceptionLogAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Exception/ExceptionLogAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Logging/LogAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Logging/LogAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/Log4Net/Layouts/JsonLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/Log4Net/Layouts/JsonLayout.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/Log4Net/LoggerServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/Log4Net/LoggerServiceBase.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/Log4Net/Loggers/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/Log4Net/Loggers/FileLogger.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/Log4Net/SerializableLogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/Log4Net/SerializableLogEvent.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/LogDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/LogDetail.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/LogDetailWithException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/LogDetailWithException.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Logging/LogParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Logging/LogParameter.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Helpers/FileHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Messages/AspectMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Messages/AspectMessages.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/ICarDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/ICarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/ICreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/ICustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/IRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Context/RentACarContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Context/RentACarContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfCarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfCarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfCreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfCreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfCustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfCustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Repository/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/EntityFramework/Repository/EfUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/InMemory/InMemoryBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/InMemory/InMemoryCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/Concrete/InMemory/InMemoryColorDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entities/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/Car.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/CarImage.cs -------------------------------------------------------------------------------- /Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /Entities/Concrete/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/CreditCard.cs -------------------------------------------------------------------------------- /Entities/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entities/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/DTOs/UserForLoginDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/DTOs/UserForRegisterDto.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/README.md -------------------------------------------------------------------------------- /ReCapProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/ReCapProject.sln -------------------------------------------------------------------------------- /RentACarSQLQuery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/RentACarSQLQuery.sql -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/CarImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CreditCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/CreditCardsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/log4net.config -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/bmw-beyaz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/wwwroot/Images/bmw-beyaz.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/wwwroot/Images/default.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/reno-mavi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/wwwroot/Images/reno-mavi.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/tesla-beyaz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/wwwroot/Images/tesla-beyaz.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Images/tesla-mavi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulceselim/re-cap-project-with-csharp/HEAD/WebAPI/wwwroot/Images/tesla-mavi.jpg --------------------------------------------------------------------------------