├── .dockerignore ├── .gitattributes ├── .gitignore ├── RentACar.sln ├── corePackages ├── Freezone.Core.Application │ ├── Dtos │ │ ├── IDto.cs │ │ ├── UserForLoginDto.cs │ │ └── UserForRegisterDto.cs │ ├── Freezone.Core.Application.csproj │ ├── Pipelines │ │ ├── Authorization │ │ │ ├── AuthorizationBehavior.cs │ │ │ └── ISecuredOperation.cs │ │ ├── Caching │ │ │ ├── CacheRemovingBehavior.cs │ │ │ ├── CacheSettings.cs │ │ │ ├── CachingBehavior.cs │ │ │ ├── ICachableRequest.cs │ │ │ └── ICacheRemoverRequest.cs │ │ ├── Logging │ │ │ ├── ILoggableRequest.cs │ │ │ └── LoggingBehavior.cs │ │ ├── Transaction │ │ │ ├── ITransactionableOperation.cs │ │ │ └── TransactionScopeBehavior.cs │ │ └── Validation │ │ │ └── RequestValidationBehavior.cs │ ├── Requests │ │ └── PageRequest.cs │ └── Rules │ │ └── BaseBusinessRules.cs ├── Freezone.Core.CrossCuttingConcerns │ ├── Exceptions │ │ ├── BusinessException.cs │ │ ├── ExceptionMiddleware.cs │ │ ├── ExceptionMiddlewareExtensions.cs │ │ ├── Handlers │ │ │ ├── ExceptionHandler.cs │ │ │ └── HttpExceptionHandler.cs │ │ └── HttpProblemDetails │ │ │ ├── AuthrorizationProblemDetails.cs │ │ │ ├── BusinessProblemDetails.cs │ │ │ ├── InternalServerErrorProblemDetails.cs │ │ │ ├── ProblemDetailsExtensions.cs │ │ │ └── ValidationProblemDetails.cs │ ├── Freezone.Core.CrossCuttingConcerns.csproj │ └── Logging │ │ ├── LogDetail.cs │ │ ├── LogDetailWithException.cs │ │ ├── LogParameter.cs │ │ └── Serilog │ │ ├── ConfigurationModels │ │ └── FileLogConfiguration.cs │ │ ├── LoggerServiceBase.cs │ │ ├── Loggers │ │ └── FileLogger.cs │ │ └── Messages │ │ └── SerilogMessages.cs ├── Freezone.Core.Mailing │ └── Freezone.Core.Mailing │ │ ├── Freezone.Core.Mailing.csproj │ │ ├── IMailService.cs │ │ ├── Mail.cs │ │ ├── MailKit │ │ └── MailKitMailService.cs │ │ └── MailSettings.cs ├── Freezone.Core.Persistence │ ├── Dynamic │ │ ├── Dynamic.cs │ │ ├── Filter.cs │ │ ├── IQueryableDynamicFilterExtensions.cs │ │ └── Sort.cs │ ├── Freezone.Core.Persistence.csproj │ ├── Paging │ │ ├── BasePageableModel.cs │ │ ├── GetListResponse.cs │ │ ├── IPaginate.cs │ │ ├── IQueryablePaginateExtensions.cs │ │ └── Paginate.cs │ └── Repositories │ │ ├── EfRepositoryBase.cs │ │ ├── Entity.cs │ │ ├── IAsyncRepository.cs │ │ ├── IQuery.cs │ │ └── IRepository.cs └── Freezone.Core.Security │ └── Freezone.Core.Security │ ├── Authenticator │ ├── AuthenticatorType.cs │ ├── Email │ │ ├── EmailAuthenticatorHelper.cs │ │ └── IEmailAuthenticatorHelper.cs │ └── Otp │ │ ├── IOtpAuthenticatorHelper.cs │ │ └── OtpAuthenticatorHelper.cs │ ├── Entities │ ├── OperationClaim.cs │ ├── RefreshToken.cs │ ├── User.cs │ ├── UserEmailAuthenticator.cs │ ├── UserOperationClaim.cs │ └── UserOtpAuthenticator.cs │ ├── Extensions │ ├── ClaimExtensions.cs │ └── ClaimsPrincipalExtensions.cs │ ├── Freezone.Core.Security.csproj │ ├── Hashing │ └── HashingHelper.cs │ └── JWT │ ├── AccessToken.cs │ ├── ITokenHelper.cs │ ├── JwtHelper.cs │ ├── SecurityKeyHelper.cs │ ├── SigningCredentialsHelper.cs │ └── TokenOptions.cs └── rentACarApp ├── Application ├── Application.csproj ├── ApplicationServiceRegistration.cs ├── Features │ ├── Auth │ │ ├── Commands │ │ │ ├── EnableEmailAuthenticator │ │ │ │ └── EnableEmailAuthenticatorCommand.cs │ │ │ ├── EnableOtpAuthenticator │ │ │ │ ├── EnableOtpAuthenticatorCommand.cs │ │ │ │ ├── EnableOtpAuthenticatorCommandValidator.cs │ │ │ │ └── EnabledOtpAuthenticatorResponse.cs │ │ │ ├── Login │ │ │ │ ├── LoggedResponse.cs │ │ │ │ ├── LoginCommand.cs │ │ │ │ └── LoginCommandValidator.cs │ │ │ ├── Refresh │ │ │ │ ├── RefreshCommand.cs │ │ │ │ ├── RefreshCommandValidator.cs │ │ │ │ └── RefreshedResponse.cs │ │ │ ├── Register │ │ │ │ ├── RegisterCommand.cs │ │ │ │ ├── RegisterCommandValidator.cs │ │ │ │ └── RegisteredResponse.cs │ │ │ ├── Revoke │ │ │ │ ├── RevokeCommand.cs │ │ │ │ ├── RevokeCommandValidator.cs │ │ │ │ └── RevokedResponse.cs │ │ │ ├── VerifyEmailAuthenticator │ │ │ │ └── VerifyEmailAuthenticatorCommand.cs │ │ │ └── VerifyOtpAuthenticator │ │ │ │ └── VerifyOtpAuthenticatorCommand.cs │ │ ├── Constants │ │ │ └── AuthBusinessMessages.cs │ │ ├── Profiles │ │ │ └── MappingProfiles.cs │ │ └── Rules │ │ │ └── AuthBusinessRules.cs │ ├── Brands │ │ ├── Commands │ │ │ └── Create │ │ │ │ ├── CreateBrandCommand.cs │ │ │ │ ├── CreateBrandCommandValidator.cs │ │ │ │ └── CreatedBrandResponse.cs │ │ ├── Constants │ │ │ └── BrandsRoles.cs │ │ ├── Profiles │ │ │ └── MappingProfiles.cs │ │ ├── Queries │ │ │ ├── GetById │ │ │ │ ├── GetByIdBrandQuery.cs │ │ │ │ └── GetByIdBrandResponse.cs │ │ │ └── GetList │ │ │ │ ├── GetListBrandDto.cs │ │ │ │ └── GetListBrandQuery.cs │ │ └── Rules │ │ │ └── BrandBusinessRules.cs │ ├── Cars │ │ ├── Commands │ │ │ └── Create │ │ │ │ ├── CreateCarCommand.cs │ │ │ │ ├── CreateCarValidator.cs │ │ │ │ └── CreatedCarResponse.cs │ │ ├── Profiles │ │ │ └── MappingProfiles.cs │ │ ├── Queries │ │ │ ├── GetList │ │ │ │ ├── GetListCarDto.cs │ │ │ │ └── GetListCarQuery.cs │ │ │ └── GetListByDynamic │ │ │ │ ├── GetListCarByDynamicDto.cs │ │ │ │ └── GetListCarByDynamicQuery.cs │ │ ├── Rules │ │ │ └── CarBusinessRules.cs │ │ └── Validations │ │ │ └── CarCustomValidationRules.cs │ └── Models │ │ ├── Profiles │ │ └── MappingProfiles.cs │ │ └── Queries │ │ ├── GetListModelDto.cs │ │ └── GetListModelQuery.cs └── Services │ ├── AuthService │ ├── AuthService.cs │ ├── AuthServiceBusinessMessages.cs │ └── IAuthService.cs │ └── Repositories │ ├── IBrandRepository.cs │ ├── ICarRepository.cs │ ├── IFuelRepository.cs │ ├── IModelRepository.cs │ ├── IOperationClaimRepository.cs │ ├── IRefreshTokenRepository.cs │ ├── ITransmissionRepository.cs │ ├── IUserEmailAuthenticatorRepository.cs │ ├── IUserOperationClaimRepository.cs │ ├── IUserOtpAuthenticatorRepository.cs │ └── IUserRepository.cs ├── Domain ├── Domain.csproj ├── Entities │ ├── Brand.cs │ ├── Car.cs │ ├── Fuel.cs │ ├── Model.cs │ └── Transmission.cs └── Enums │ └── CarState.cs ├── Infrastructure └── Infrastructure.csproj ├── Persistence ├── Contexts │ └── BaseDbContext.cs ├── EntityConfigurations │ ├── BrandConfiguration.cs │ ├── CarConfigurations.cs │ ├── ModelConfiguration.cs │ ├── OperationClaimConfiguration.cs │ ├── RefreshTokenConfiguration.cs │ ├── UserConfiguration.cs │ ├── UserEmailAuthenticatorConfiguration.cs │ ├── UserOperationClaimConfiguration.cs │ └── UserOtpAuthenticatorConfiguration.cs ├── Migrations │ ├── 20230116135614_CreateBrandAndModel.Designer.cs │ ├── 20230116135614_CreateBrandAndModel.cs │ ├── 20230120072626_AddModelFuelTransmission.Designer.cs │ ├── 20230120072626_AddModelFuelTransmission.cs │ ├── 20230123112604_AddCarTable.Designer.cs │ ├── 20230123112604_AddCarTable.cs │ ├── 20230124061930_AddCarState.Designer.cs │ ├── 20230124061930_AddCarState.cs │ ├── 20230124104219_AddCarState3.Designer.cs │ ├── 20230124104219_AddCarState3.cs │ ├── 20230124104617_AddCar.Designer.cs │ ├── 20230124104617_AddCar.cs │ ├── 20230206064048_Add-Core-Security.Designer.cs │ ├── 20230206064048_Add-Core-Security.cs │ ├── 20230209064044_Add-Refresh-Token.Designer.cs │ ├── 20230209064044_Add-Refresh-Token.cs │ ├── 20230213074215_Add-UserEmailAuthenticators.Designer.cs │ ├── 20230213074215_Add-UserEmailAuthenticators.cs │ ├── 20230213074343_Update-UpdatedDateCanNull.Designer.cs │ ├── 20230213074343_Update-UpdatedDateCanNull.cs │ ├── 20230216073232_Add-UserOtpAuthenticator.Designer.cs │ ├── 20230216073232_Add-UserOtpAuthenticator.cs │ └── BaseDbContextModelSnapshot.cs ├── Persistence.csproj ├── PersistenceServiceRegistration.cs └── Repositories │ ├── BrandRepository.cs │ ├── CarRepository.cs │ ├── FuelRepository.cs │ ├── ModelRepository.cs │ ├── OperationClaimRepository.cs │ ├── RefreshTokenRepository.cs │ ├── TransmissionRepository.cs │ ├── UserEmailAuthenticatorRepository.cs │ ├── UserOperationClaimRepository.cs │ ├── UserOtpAuthenticatorRepository.cs │ └── UserRepository.cs └── WebAPI ├── Controllers ├── AuthController.cs ├── BaseController.cs ├── BrandsController.cs ├── CarsController.cs └── ModelsController.cs ├── Dockerfile ├── Program.cs ├── Properties └── launchSettings.json ├── ValueObjects └── WebApiConfigurations.cs ├── WebAPI.csproj ├── appsettings.Development.json └── appsettings.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/.gitignore -------------------------------------------------------------------------------- /RentACar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/RentACar.sln -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Dtos/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Dtos/IDto.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Dtos/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Dtos/UserForLoginDto.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Dtos/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Dtos/UserForRegisterDto.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Freezone.Core.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Freezone.Core.Application.csproj -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Authorization/AuthorizationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Authorization/AuthorizationBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Authorization/ISecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Authorization/ISecuredOperation.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Caching/CacheRemovingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Caching/CacheRemovingBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Caching/CacheSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Caching/CacheSettings.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Caching/CachingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Caching/CachingBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Caching/ICachableRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Caching/ICachableRequest.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Caching/ICacheRemoverRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Caching/ICacheRemoverRequest.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Logging/ILoggableRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Logging/ILoggableRequest.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Logging/LoggingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Logging/LoggingBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Transaction/ITransactionableOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Transaction/ITransactionableOperation.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Transaction/TransactionScopeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Transaction/TransactionScopeBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Pipelines/Validation/RequestValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Pipelines/Validation/RequestValidationBehavior.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Requests/PageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Requests/PageRequest.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Application/Rules/BaseBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Application/Rules/BaseBusinessRules.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/BusinessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/BusinessException.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/Handlers/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/Handlers/ExceptionHandler.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/Handlers/HttpExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/Handlers/HttpExceptionHandler.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/AuthrorizationProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/AuthrorizationProblemDetails.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/BusinessProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/BusinessProblemDetails.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/InternalServerErrorProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/InternalServerErrorProblemDetails.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/ProblemDetailsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/ProblemDetailsExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/ValidationProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Exceptions/HttpProblemDetails/ValidationProblemDetails.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Freezone.Core.CrossCuttingConcerns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Freezone.Core.CrossCuttingConcerns.csproj -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogDetail.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogDetailWithException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogDetailWithException.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/LogParameter.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/ConfigurationModels/FileLogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/ConfigurationModels/FileLogConfiguration.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/LoggerServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/LoggerServiceBase.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/Loggers/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/Loggers/FileLogger.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/Messages/SerilogMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.CrossCuttingConcerns/Logging/Serilog/Messages/SerilogMessages.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/Freezone.Core.Mailing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/Freezone.Core.Mailing.csproj -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/IMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/IMailService.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/Mail.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/MailKit/MailKitMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/MailKit/MailKitMailService.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/MailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Mailing/Freezone.Core.Mailing/MailSettings.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Dynamic/Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Dynamic/Dynamic.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Dynamic/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Dynamic/Filter.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Dynamic/IQueryableDynamicFilterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Dynamic/IQueryableDynamicFilterExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Dynamic/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Dynamic/Sort.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Freezone.Core.Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Freezone.Core.Persistence.csproj -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Paging/BasePageableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Paging/BasePageableModel.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Paging/GetListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Paging/GetListResponse.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Paging/IPaginate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Paging/IPaginate.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Paging/IQueryablePaginateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Paging/IQueryablePaginateExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Paging/Paginate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Paging/Paginate.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Repositories/EfRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Repositories/EfRepositoryBase.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Repositories/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Repositories/Entity.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Repositories/IAsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Repositories/IAsyncRepository.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Repositories/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Repositories/IQuery.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Persistence/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Persistence/Repositories/IRepository.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/AuthenticatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/AuthenticatorType.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Email/EmailAuthenticatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Email/EmailAuthenticatorHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Email/IEmailAuthenticatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Email/IEmailAuthenticatorHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Otp/IOtpAuthenticatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Otp/IOtpAuthenticatorHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Otp/OtpAuthenticatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Authenticator/Otp/OtpAuthenticatorHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/OperationClaim.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/RefreshToken.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/User.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserEmailAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserEmailAuthenticator.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserOperationClaim.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserOtpAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Entities/UserOtpAuthenticator.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Freezone.Core.Security.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Freezone.Core.Security.csproj -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/corePackages/Freezone.Core.Security/Freezone.Core.Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Application.csproj -------------------------------------------------------------------------------- /rentACarApp/Application/ApplicationServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/ApplicationServiceRegistration.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/EnableEmailAuthenticator/EnableEmailAuthenticatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/EnableEmailAuthenticator/EnableEmailAuthenticatorCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnableOtpAuthenticatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnableOtpAuthenticatorCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnableOtpAuthenticatorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnableOtpAuthenticatorCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnabledOtpAuthenticatorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/EnableOtpAuthenticator/EnabledOtpAuthenticatorResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Login/LoggedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Login/LoggedResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Login/LoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Login/LoginCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Login/LoginCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Login/LoginCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Refresh/RefreshedResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Register/RegisterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Register/RegisterCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Register/RegisterCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Register/RegisterCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Register/RegisteredResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Register/RegisteredResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Revoke/RevokeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Revoke/RevokeCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Revoke/RevokeCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Revoke/RevokeCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/Revoke/RevokedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/Revoke/RevokedResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/VerifyEmailAuthenticator/VerifyEmailAuthenticatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/VerifyEmailAuthenticator/VerifyEmailAuthenticatorCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Commands/VerifyOtpAuthenticator/VerifyOtpAuthenticatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Commands/VerifyOtpAuthenticator/VerifyOtpAuthenticatorCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Constants/AuthBusinessMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Constants/AuthBusinessMessages.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Auth/Rules/AuthBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Auth/Rules/AuthBusinessRules.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Commands/Create/CreateBrandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Commands/Create/CreateBrandCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Commands/Create/CreateBrandCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Commands/Create/CreateBrandCommandValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Commands/Create/CreatedBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Commands/Create/CreatedBrandResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Constants/BrandsRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Constants/BrandsRoles.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Queries/GetById/GetByIdBrandQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Queries/GetById/GetByIdBrandQuery.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Queries/GetById/GetByIdBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Queries/GetById/GetByIdBrandResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Queries/GetList/GetListBrandDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Queries/GetList/GetListBrandDto.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Queries/GetList/GetListBrandQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Queries/GetList/GetListBrandQuery.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Brands/Rules/BrandBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Brands/Rules/BrandBusinessRules.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Commands/Create/CreateCarCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Commands/Create/CreateCarCommand.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Commands/Create/CreateCarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Commands/Create/CreateCarValidator.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Commands/Create/CreatedCarResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Commands/Create/CreatedCarResponse.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Queries/GetList/GetListCarDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Queries/GetList/GetListCarDto.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Queries/GetList/GetListCarQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Queries/GetList/GetListCarQuery.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Queries/GetListByDynamic/GetListCarByDynamicDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Queries/GetListByDynamic/GetListCarByDynamicDto.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Queries/GetListByDynamic/GetListCarByDynamicQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Queries/GetListByDynamic/GetListCarByDynamicQuery.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Rules/CarBusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Rules/CarBusinessRules.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Cars/Validations/CarCustomValidationRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Cars/Validations/CarCustomValidationRules.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Models/Profiles/MappingProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Models/Profiles/MappingProfiles.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Models/Queries/GetListModelDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Models/Queries/GetListModelDto.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Features/Models/Queries/GetListModelQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Features/Models/Queries/GetListModelQuery.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/AuthService/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/AuthService/AuthService.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/AuthService/AuthServiceBusinessMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/AuthService/AuthServiceBusinessMessages.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/AuthService/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/AuthService/IAuthService.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IBrandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IBrandRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/ICarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/ICarRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IFuelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IFuelRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IModelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IModelRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IOperationClaimRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IRefreshTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IRefreshTokenRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/ITransmissionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/ITransmissionRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IUserEmailAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IUserEmailAuthenticatorRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IUserOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IUserOperationClaimRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IUserOtpAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IUserOtpAuthenticatorRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Application/Services/Repositories/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Application/Services/Repositories/IUserRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Domain.csproj -------------------------------------------------------------------------------- /rentACarApp/Domain/Entities/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Entities/Brand.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Entities/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Entities/Car.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Entities/Fuel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Entities/Fuel.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Entities/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Entities/Model.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Entities/Transmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Entities/Transmission.cs -------------------------------------------------------------------------------- /rentACarApp/Domain/Enums/CarState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Domain/Enums/CarState.cs -------------------------------------------------------------------------------- /rentACarApp/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /rentACarApp/Persistence/Contexts/BaseDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Contexts/BaseDbContext.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/BrandConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/BrandConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/CarConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/CarConfigurations.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/ModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/ModelConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/OperationClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/OperationClaimConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/RefreshTokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/RefreshTokenConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/UserConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/UserEmailAuthenticatorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/UserEmailAuthenticatorConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/UserOperationClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/UserOperationClaimConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/EntityConfigurations/UserOtpAuthenticatorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/EntityConfigurations/UserOtpAuthenticatorConfiguration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230116135614_CreateBrandAndModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230116135614_CreateBrandAndModel.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230116135614_CreateBrandAndModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230116135614_CreateBrandAndModel.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230120072626_AddModelFuelTransmission.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230120072626_AddModelFuelTransmission.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230120072626_AddModelFuelTransmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230120072626_AddModelFuelTransmission.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230123112604_AddCarTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230123112604_AddCarTable.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230123112604_AddCarTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230123112604_AddCarTable.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124061930_AddCarState.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124061930_AddCarState.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124061930_AddCarState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124061930_AddCarState.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124104219_AddCarState3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124104219_AddCarState3.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124104219_AddCarState3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124104219_AddCarState3.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124104617_AddCar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124104617_AddCar.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230124104617_AddCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230124104617_AddCar.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230206064048_Add-Core-Security.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230206064048_Add-Core-Security.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230206064048_Add-Core-Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230206064048_Add-Core-Security.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230209064044_Add-Refresh-Token.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230209064044_Add-Refresh-Token.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230209064044_Add-Refresh-Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230209064044_Add-Refresh-Token.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230213074215_Add-UserEmailAuthenticators.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230213074215_Add-UserEmailAuthenticators.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230213074215_Add-UserEmailAuthenticators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230213074215_Add-UserEmailAuthenticators.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230213074343_Update-UpdatedDateCanNull.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230213074343_Update-UpdatedDateCanNull.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230213074343_Update-UpdatedDateCanNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230213074343_Update-UpdatedDateCanNull.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230216073232_Add-UserOtpAuthenticator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230216073232_Add-UserOtpAuthenticator.Designer.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/20230216073232_Add-UserOtpAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/20230216073232_Add-UserOtpAuthenticator.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Migrations/BaseDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Migrations/BaseDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Persistence.csproj -------------------------------------------------------------------------------- /rentACarApp/Persistence/PersistenceServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/PersistenceServiceRegistration.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/BrandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/BrandRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/CarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/CarRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/FuelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/FuelRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/ModelRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/ModelRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/OperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/OperationClaimRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/RefreshTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/RefreshTokenRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/TransmissionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/TransmissionRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/UserEmailAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/UserEmailAuthenticatorRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/UserOperationClaimRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/UserOperationClaimRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/UserOtpAuthenticatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/UserOtpAuthenticatorRepository.cs -------------------------------------------------------------------------------- /rentACarApp/Persistence/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/Persistence/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Controllers/BaseController.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Controllers/ModelsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Controllers/ModelsController.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Dockerfile -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Program.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /rentACarApp/WebAPI/ValueObjects/WebApiConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/ValueObjects/WebApiConfigurations.cs -------------------------------------------------------------------------------- /rentACarApp/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /rentACarApp/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /rentACarApp/WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/Freezone/HEAD/rentACarApp/WebAPI/appsettings.json --------------------------------------------------------------------------------