├── .vs ├── ProjectSettings.json ├── ReCapProject │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── config │ │ └── applicationhost.config │ └── v16 │ │ └── .suo ├── ReCapProject2 │ └── v16 │ │ └── .suo ├── VSWorkspaceState.json └── slnx.sqlite ├── Business ├── Abstract │ ├── IAuthService.cs │ ├── IBrandService.cs │ ├── ICarImageService.cs │ ├── ICarService.cs │ ├── IColorService.cs │ ├── ICreditCardService.cs │ ├── ICustomerService.cs │ ├── IPaymentService.cs │ ├── IRentalService.cs │ └── IUserService.cs ├── Business.csproj ├── Business.csproj.user ├── BusinessAspects │ └── Autofac │ │ └── SecuredOperation.cs ├── Concrete │ ├── AuthManager.cs │ ├── BrandManager.cs │ ├── CarImageManager.cs │ ├── CarManager.cs │ ├── ColorManager.cs │ ├── CreditCardManager.cs │ ├── CustomerManager.cs │ ├── PaymentManager.cs │ ├── RentalManager.cs │ └── UserManager.cs ├── Constants │ ├── FakeCard.cs │ └── Messages.cs ├── DependencyResolvers │ └── Autofac │ │ └── AutofacBusinessModule.cs ├── ValidationRules │ └── FluentValidation │ │ ├── BrandValidator.cs │ │ ├── CarImageValidator.cs │ │ ├── CarValidator.cs │ │ ├── ColorValidator.cs │ │ ├── CustomerValidator.cs │ │ ├── RegisterValidator.cs │ │ ├── RentalValidator.cs │ │ └── UserValidator.cs ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── Business.deps.json │ │ ├── Business.dll │ │ ├── Business.pdb │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ ├── Entities.dll │ │ └── Entities.pdb └── obj │ ├── Business.csproj.nuget.dgspec.json │ ├── Business.csproj.nuget.g.props │ ├── Business.csproj.nuget.g.targets │ ├── Debug │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Business.AssemblyInfo.cs │ │ ├── Business.AssemblyInfoInputs.cache │ │ ├── Business.assets.cache │ │ ├── Business.csproj.CopyComplete │ │ ├── Business.csproj.CoreCompileInputs.cache │ │ ├── Business.csproj.FileListAbsolute.txt │ │ ├── Business.csprojAssemblyReference.cache │ │ ├── Business.dll │ │ └── Business.pdb │ ├── Release │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Business.AssemblyInfo.cs │ │ ├── Business.AssemblyInfoInputs.cache │ │ └── Business.assets.cache │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleUI ├── ConsoleUI.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Autofac.Extensions.DependencyInjection.dll │ │ ├── Autofac.Extras.DynamicProxy.dll │ │ ├── Autofac.dll │ │ ├── Business.dll │ │ ├── Business.pdb │ │ ├── Castle.Core.dll │ │ ├── ConsoleUI.deps.json │ │ ├── ConsoleUI.dll │ │ ├── ConsoleUI.exe │ │ ├── ConsoleUI.pdb │ │ ├── ConsoleUI.runtimeconfig.dev.json │ │ ├── ConsoleUI.runtimeconfig.json │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── FluentValidation.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.HashCode.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IO.Pipelines.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ └── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── sni.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── sni.dll │ │ ├── win-x86 │ │ └── native │ │ │ └── sni.dll │ │ └── win │ │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ ├── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── ConsoleUI.csproj.nuget.dgspec.json │ ├── ConsoleUI.csproj.nuget.g.props │ ├── ConsoleUI.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── ConsoleUI.AssemblyInfo.cs │ │ ├── ConsoleUI.AssemblyInfoInputs.cache │ │ ├── ConsoleUI.assets.cache │ │ ├── ConsoleUI.csproj.CopyComplete │ │ ├── ConsoleUI.csproj.CoreCompileInputs.cache │ │ ├── ConsoleUI.csproj.FileListAbsolute.txt │ │ ├── ConsoleUI.csprojAssemblyReference.cache │ │ ├── ConsoleUI.dll │ │ ├── ConsoleUI.genruntimeconfig.cache │ │ ├── ConsoleUI.pdb │ │ └── apphost.exe │ ├── Release │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── ConsoleUI.AssemblyInfo.cs │ │ ├── ConsoleUI.AssemblyInfoInputs.cache │ │ ├── ConsoleUI.assets.cache │ │ └── ConsoleUI.csprojAssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Core ├── Aspects │ └── Autofac │ │ ├── Caching │ │ ├── CacheAspect.cs │ │ └── CacheRemoveAspect.cs │ │ ├── Performance │ │ └── PerformanceAspect.cs │ │ ├── Transaction │ │ └── TransactionScopeAspect.cs │ │ └── Validation │ │ └── ValidationAspect.cs ├── Core.csproj ├── CrossCuttingConcerns │ ├── Caching │ │ ├── ICacheManager.cs │ │ └── Microsoft │ │ │ └── MemoryCacheManager.cs │ └── Validation │ │ └── ValidationTool.cs ├── DataAccess │ ├── EntityFramework │ │ └── EfEntityRepositoryBase.cs │ └── IEntityRepository.cs ├── DependencyResolvers │ └── CoreModule.cs ├── Entities │ ├── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ └── UserOperationClaim.cs │ ├── IDto.cs │ └── IEntity.cs ├── Extentions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ErrorDetails.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ └── ServiceCollectionExtentions.cs ├── Utilities │ ├── Business │ │ └── BusinessRules.cs │ ├── FileService │ │ └── FileOperation.cs │ ├── Interceptors │ │ ├── AspectInterceptorSelector.cs │ │ ├── MethodInterception.cs │ │ └── MethodInterceptionBaseAttribute.cs │ ├── IoC │ │ ├── ICoreModule.cs │ │ └── ServiceTool.cs │ ├── Results │ │ ├── DataResult.cs │ │ ├── ErrorDataResult.cs │ │ ├── ErrorResult.cs │ │ ├── IDataResult.cs │ │ ├── IResult.cs │ │ ├── Result.cs │ │ ├── SuccessDataResult.cs │ │ └── SuccessResult.cs │ └── Security │ │ ├── Encryption │ │ ├── SecurityKeyHelper.cs │ │ └── SigningCredentialsHelper.cs │ │ ├── Hashing │ │ └── HashingHelper.cs │ │ └── JWT │ │ ├── AccessToken.cs │ │ ├── ITokenHelper.cs │ │ ├── JwtHelper.cs │ │ └── TokenOptions.cs ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── Core.deps.json │ │ ├── Core.dll │ │ └── Core.pdb └── obj │ ├── Core.csproj.nuget.dgspec.json │ ├── Core.csproj.nuget.g.props │ ├── Core.csproj.nuget.g.targets │ ├── Debug │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Core.AssemblyInfo.cs │ │ ├── Core.AssemblyInfoInputs.cache │ │ ├── Core.assets.cache │ │ ├── Core.csproj.CoreCompileInputs.cache │ │ ├── Core.csproj.FileListAbsolute.txt │ │ ├── Core.csprojAssemblyReference.cache │ │ ├── Core.dll │ │ └── Core.pdb │ ├── Release │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Core.AssemblyInfo.cs │ │ ├── Core.AssemblyInfoInputs.cache │ │ └── Core.assets.cache │ ├── project.assets.json │ └── project.nuget.cache ├── DataAccess ├── Abstract │ ├── IBrandDal.cs │ ├── ICarDal.cs │ ├── ICarImageDal.cs │ ├── IColorDal.cs │ ├── ICreditCardDal.cs │ ├── ICustomerDal.cs │ ├── IRentalDal.cs │ └── IUserDal.cs ├── Concrete │ ├── EntityFramework │ │ ├── EfBrandDal.cs │ │ ├── EfCarDal.cs │ │ ├── EfCarImageDal.cs │ │ ├── EfColorDal.cs │ │ ├── EfCreditCardDal.cs │ │ ├── EfCustomerDal.cs │ │ ├── EfRentalDal.cs │ │ ├── EfUserDal.cs │ │ └── ReCapContext.cs │ └── InMemory │ │ └── InMemoryCarDal.cs ├── DataAccess.csproj ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── DataAccess.deps.json │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ ├── Entities.dll │ │ └── Entities.pdb └── obj │ ├── DataAccess.csproj.nuget.dgspec.json │ ├── DataAccess.csproj.nuget.g.props │ ├── DataAccess.csproj.nuget.g.targets │ ├── Debug │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── DataAccess.AssemblyInfo.cs │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ ├── DataAccess.assets.cache │ │ ├── DataAccess.csproj.CopyComplete │ │ ├── DataAccess.csproj.CoreCompileInputs.cache │ │ ├── DataAccess.csproj.FileListAbsolute.txt │ │ ├── DataAccess.csprojAssemblyReference.cache │ │ ├── DataAccess.dll │ │ └── DataAccess.pdb │ ├── Release │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── DataAccess.AssemblyInfo.cs │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ ├── DataAccess.assets.cache │ │ └── DataAccess.csprojAssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Entities ├── Concrete │ ├── Brand.cs │ ├── Car.cs │ ├── CarImage.cs │ ├── Color.cs │ ├── CreditCard.cs │ ├── Customer.cs │ ├── Payment.cs │ └── Rental.cs ├── DTOs │ ├── CarDetailDto.cs │ ├── CarImageDto.cs │ ├── CustomerDetailDto.cs │ ├── RentalDetailDto.cs │ ├── UserForLoginDto.cs │ ├── UserForRegisterDto.cs │ └── UserForUpdateDto.cs ├── Entities.csproj ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── Entities.deps.json │ │ ├── Entities.dll │ │ └── Entities.pdb └── obj │ ├── Debug │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.assets.cache │ │ ├── Entities.csproj.CopyComplete │ │ ├── Entities.csproj.CoreCompileInputs.cache │ │ ├── Entities.csproj.FileListAbsolute.txt │ │ ├── Entities.csprojAssemblyReference.cache │ │ ├── Entities.dll │ │ └── Entities.pdb │ ├── Entities.csproj.nuget.dgspec.json │ ├── Entities.csproj.nuget.g.props │ ├── Entities.csproj.nuget.g.targets │ ├── Release │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.assets.cache │ │ └── Entities.csprojAssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── README.md ├── ReCapProject.sln └── WebAPI ├── Controllers ├── AuthController.cs ├── BrandsController.cs ├── CarImagesController.cs ├── CarsController.cs ├── ColorsController.cs ├── CreditCardController.cs ├── CustomersController.cs ├── PaymentController.cs ├── RentalsController.cs └── UsersController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WebAPI.csproj ├── WebAPI.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp3.1 │ ├── Autofac.Extensions.DependencyInjection.dll │ ├── Autofac.Extras.DynamicProxy.dll │ ├── Autofac.dll │ ├── Business.dll │ ├── Business.pdb │ ├── Castle.Core.dll │ ├── Core.dll │ ├── Core.pdb │ ├── DataAccess.dll │ ├── DataAccess.pdb │ ├── Entities.dll │ ├── Entities.pdb │ ├── FluentValidation.dll │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ ├── Microsoft.AspNetCore.Http.Features.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Newtonsoft.Json.dll │ ├── System.Collections.Immutable.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.IO.Pipelines.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── WebAPI.deps.json │ ├── WebAPI.dll │ ├── WebAPI.exe │ ├── WebAPI.pdb │ ├── WebAPI.runtimeconfig.dev.json │ ├── WebAPI.runtimeconfig.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── runtimes │ ├── unix │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ └── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm64 │ └── native │ │ └── sni.dll │ ├── win-x64 │ └── native │ │ └── sni.dll │ ├── win-x86 │ └── native │ │ └── sni.dll │ └── win │ └── lib │ ├── netcoreapp2.0 │ └── System.Runtime.Caching.dll │ ├── netcoreapp2.1 │ └── Microsoft.Data.SqlClient.dll │ └── netstandard2.0 │ └── System.Security.Cryptography.ProtectedData.dll ├── obj ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── WebAPI.AssemblyInfo.cs │ │ ├── WebAPI.AssemblyInfoInputs.cache │ │ ├── WebAPI.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebAPI.RazorTargetAssemblyInfo.cache │ │ ├── WebAPI.assets.cache │ │ ├── WebAPI.csproj.CopyComplete │ │ ├── WebAPI.csproj.CoreCompileInputs.cache │ │ ├── WebAPI.csproj.FileListAbsolute.txt │ │ ├── WebAPI.csprojAssemblyReference.cache │ │ ├── WebAPI.dll │ │ ├── WebAPI.genruntimeconfig.cache │ │ ├── WebAPI.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── WebAPI.StaticWebAssets.Manifest.cache │ │ └── WebAPI.StaticWebAssets.xml ├── Release │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── WebAPI.AssemblyInfo.cs │ │ ├── WebAPI.AssemblyInfoInputs.cache │ │ ├── WebAPI.assets.cache │ │ └── WebAPI.csprojAssemblyReference.cache ├── WebAPI.csproj.nuget.dgspec.json ├── WebAPI.csproj.nuget.g.props ├── WebAPI.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── wwwroot └── Upload └── Images └── CarImages ├── 00020000-d49a-4436-90c1-6840148c00d9.jpg ├── 007966f7-94bb-4353-9b57-65506ca24925.jpg ├── 030dfee1-7875-434e-966e-c71ec36c7b73.jpg ├── 0d0ba604-d162-4173-bc38-26b5e21d5ecf.jpg ├── 21f9c051-159e-4604-84eb-ed0a61dce694.jpg ├── 2476dbf4-66a4-4b40-83e5-5e1a304680eb.jpg ├── 38349fd1-fde0-4d5d-800b-e54ef9fd0aa3.jpg ├── 386b65d3-b328-4236-aa93-d2d2671d49e6.jpg ├── 522f6fec-9690-433a-81f6-a6b3e6dbc24f.jpg ├── 5b4bbe3d-b6e0-4f12-8002-a7a7a7e2c3bb.jpg ├── 66257e6d-d91f-4fe6-907e-66af01c721df.jpg ├── 6dde2406-48d9-4663-b503-0d707c032e9c.jpg ├── 72200be2-10c9-4479-a3a6-7899bdfa8dbf.jpg ├── 7908b81c-2a40-4302-9bb0-552d840584ef.jpg ├── 80268ace-5ef2-4b5a-b3fe-a7475a9b6cc2.jpg ├── 9250906f-7e0a-4043-98e0-44e765ae1af6.jpg ├── 972323f0-87ff-4a2f-823e-2b977e65b549.jpg ├── abe7ed64-9b74-47d8-ba51-b14ae70d550b.jpg ├── bb6e5861-7b50-48aa-8908-c771586bf7c7.jpg ├── d901ad77-06ef-49b8-afd6-93cd65dc097d.jpg ├── de3b5850-ecd9-426f-b3e4-b7ccdc537d83.jpg ├── default.jpg └── default_large.jpg /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/ReCapProject/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/ReCapProject/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/ReCapProject/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/ReCapProject/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/ReCapProject/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/ReCapProject/v16/.suo -------------------------------------------------------------------------------- /.vs/ReCapProject2/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/ReCapProject2/v16/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/ICarImageService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/ICarService.cs -------------------------------------------------------------------------------- /Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/ICreditCardService.cs -------------------------------------------------------------------------------- /Business/Abstract/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/ICustomerService.cs -------------------------------------------------------------------------------- /Business/Abstract/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IPaymentService.cs -------------------------------------------------------------------------------- /Business/Abstract/IRentalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IRentalService.cs -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/Business.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Business.csproj.user -------------------------------------------------------------------------------- /Business/BusinessAspects/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/BusinessAspects/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/CarImageManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/CarManager.cs -------------------------------------------------------------------------------- /Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CreditCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/CreditCardManager.cs -------------------------------------------------------------------------------- /Business/Concrete/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/CustomerManager.cs -------------------------------------------------------------------------------- /Business/Concrete/PaymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/PaymentManager.cs -------------------------------------------------------------------------------- /Business/Concrete/RentalManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/RentalManager.cs -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /Business/Constants/FakeCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Constants/FakeCard.cs -------------------------------------------------------------------------------- /Business/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/Constants/Messages.cs -------------------------------------------------------------------------------- /Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarImageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/CarImageValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CarValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/CarValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/CustomerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/CustomerValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RegisterValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/RegisterValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/RentalValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/RentalValidator.cs -------------------------------------------------------------------------------- /Business/ValidationRules/FluentValidation/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/ValidationRules/FluentValidation/UserValidator.cs -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Business.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Business.deps.json -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Business.dll -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Business.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Core.dll -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Core.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/DataAccess.dll -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/DataAccess.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Entities.dll -------------------------------------------------------------------------------- /Business/bin/Debug/netstandard2.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/bin/Debug/netstandard2.0/Entities.pdb -------------------------------------------------------------------------------- /Business/obj/Business.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Business.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Business/obj/Business.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Business.csproj.nuget.g.props -------------------------------------------------------------------------------- /Business/obj/Business.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Business.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.AssemblyInfo.cs -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.assets.cache -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.dll -------------------------------------------------------------------------------- /Business/obj/Debug/netstandard2.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Debug/netstandard2.0/Business.pdb -------------------------------------------------------------------------------- /Business/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Business/obj/Release/netstandard2.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Release/netstandard2.0/Business.AssemblyInfo.cs -------------------------------------------------------------------------------- /Business/obj/Release/netstandard2.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e39b5ed28208f2064efb1a6ea2035a20ece5575d 2 | -------------------------------------------------------------------------------- /Business/obj/Release/netstandard2.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/Release/netstandard2.0/Business.assets.cache -------------------------------------------------------------------------------- /Business/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/project.assets.json -------------------------------------------------------------------------------- /Business/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Business/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.Extras.DynamicProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.Extras.DynamicProxy.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Autofac.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Business.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Business.pdb -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.deps.json -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.exe -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.pdb -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/ConsoleUI.runtimeconfig.json -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Core.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Core.pdb -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/DataAccess.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/DataAccess.pdb -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Entities.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Entities.pdb -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/FluentValidation.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ConsoleUI/obj/ConsoleUI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/ConsoleUI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ConsoleUI/obj/ConsoleUI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.props -------------------------------------------------------------------------------- /ConsoleUI/obj/ConsoleUI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7dd3e5e18f7a80fc6a80514fc5d7f280648f458b 2 | -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.assets.cache -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 357c888feaadd841359654e268bdf87c520286b9 2 | -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.dll -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 46ef22c8cc02700121c8dfeb0ef7850e9400d0d6 2 | -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/ConsoleUI.pdb -------------------------------------------------------------------------------- /ConsoleUI/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /ConsoleUI/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dade2133dc70b018ba655b18193b8b1ddd89f21f 2 | -------------------------------------------------------------------------------- /ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.assets.cache -------------------------------------------------------------------------------- /ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/Release/netcoreapp3.1/ConsoleUI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ConsoleUI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleUI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ConsoleUI/obj/project.nuget.cache -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Performance/PerformanceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Aspects/Autofac/Performance/PerformanceAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/CrossCuttingConcerns/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/CrossCuttingConcerns/Caching/Microsoft/MemoryCacheManager.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Extentions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ErrorDetails.cs -------------------------------------------------------------------------------- /Core/Extentions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extentions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extentions/ServiceCollectionExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Extentions/ServiceCollectionExtentions.cs -------------------------------------------------------------------------------- /Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /Core/Utilities/FileService/FileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/FileService/FileOperation.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /Core/bin/Debug/netstandard2.0/Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/bin/Debug/netstandard2.0/Core.deps.json -------------------------------------------------------------------------------- /Core/bin/Debug/netstandard2.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/bin/Debug/netstandard2.0/Core.dll -------------------------------------------------------------------------------- /Core/bin/Debug/netstandard2.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/bin/Debug/netstandard2.0/Core.pdb -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bb70b8d99ff9108d5c8f3ce9e50331d5e1228212 2 | -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.assets.cache -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d61165ae95e1bb90f2aaed35009a7c14a29a7b80 2 | -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.dll -------------------------------------------------------------------------------- /Core/obj/Debug/netstandard2.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Debug/netstandard2.0/Core.pdb -------------------------------------------------------------------------------- /Core/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Core/obj/Release/netstandard2.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Release/netstandard2.0/Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /Core/obj/Release/netstandard2.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 28e9604a94587320e718fe397f8f2eb04b1be130 2 | -------------------------------------------------------------------------------- /Core/obj/Release/netstandard2.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/Release/netstandard2.0/Core.assets.cache -------------------------------------------------------------------------------- /Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/project.assets.json -------------------------------------------------------------------------------- /Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/ICarDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/ICarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/ICreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ICustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/ICustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/IRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCarDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCarImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCarImageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfColorDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCreditCardDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfCustomerDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfCustomerDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfRentalDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfRentalDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/EfUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/ReCapContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/EntityFramework/ReCapContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/InMemory/InMemoryCarDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/Concrete/InMemory/InMemoryCarDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/Core.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/Core.pdb -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/DataAccess.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/DataAccess.deps.json -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/DataAccess.pdb -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/Entities.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/netstandard2.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/bin/Debug/netstandard2.0/Entities.pdb -------------------------------------------------------------------------------- /DataAccess/obj/DataAccess.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/DataAccess.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DataAccess/obj/DataAccess.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/DataAccess.csproj.nuget.g.props -------------------------------------------------------------------------------- /DataAccess/obj/DataAccess.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/DataAccess.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.AssemblyInfo.cs -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6d4e2c1d9f6ac45f776d2f2ae5ef73593c1376b9 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6c21af41ac319ce22cb5d863721b7772a1d15cb5 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/obj/Debug/netstandard2.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Debug/netstandard2.0/DataAccess.pdb -------------------------------------------------------------------------------- /DataAccess/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DataAccess/obj/Release/netstandard2.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Release/netstandard2.0/DataAccess.AssemblyInfo.cs -------------------------------------------------------------------------------- /DataAccess/obj/Release/netstandard2.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | db47a8b192fdd690b3c97d682b7f45f2309fd5d2 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/netstandard2.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Release/netstandard2.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /DataAccess/obj/Release/netstandard2.0/DataAccess.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/Release/netstandard2.0/DataAccess.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DataAccess/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/project.assets.json -------------------------------------------------------------------------------- /DataAccess/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/DataAccess/obj/project.nuget.cache -------------------------------------------------------------------------------- /Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /Entities/Concrete/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Car.cs -------------------------------------------------------------------------------- /Entities/Concrete/CarImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/CarImage.cs -------------------------------------------------------------------------------- /Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /Entities/Concrete/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/CreditCard.cs -------------------------------------------------------------------------------- /Entities/Concrete/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Customer.cs -------------------------------------------------------------------------------- /Entities/Concrete/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Payment.cs -------------------------------------------------------------------------------- /Entities/Concrete/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Concrete/Rental.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/CarDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CarImageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/CarImageDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/CustomerDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/CustomerDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/RentalDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/RentalDetailDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/UserForLoginDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/UserForRegisterDto.cs -------------------------------------------------------------------------------- /Entities/DTOs/UserForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/DTOs/UserForUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /Entities/bin/Debug/netstandard2.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/bin/Debug/netstandard2.0/Core.dll -------------------------------------------------------------------------------- /Entities/bin/Debug/netstandard2.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/bin/Debug/netstandard2.0/Core.pdb -------------------------------------------------------------------------------- /Entities/bin/Debug/netstandard2.0/Entities.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/bin/Debug/netstandard2.0/Entities.deps.json -------------------------------------------------------------------------------- /Entities/bin/Debug/netstandard2.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/bin/Debug/netstandard2.0/Entities.dll -------------------------------------------------------------------------------- /Entities/bin/Debug/netstandard2.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/bin/Debug/netstandard2.0/Entities.pdb -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.assets.cache -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6302a828ec60dc25aaab6552500b47c74943409d 2 | -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.dll -------------------------------------------------------------------------------- /Entities/obj/Debug/netstandard2.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Debug/netstandard2.0/Entities.pdb -------------------------------------------------------------------------------- /Entities/obj/Entities.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Entities.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Entities/obj/Entities.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Entities.csproj.nuget.g.props -------------------------------------------------------------------------------- /Entities/obj/Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Entities.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Entities/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Entities/obj/Release/netstandard2.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Release/netstandard2.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /Entities/obj/Release/netstandard2.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | daf4bb6c388438db313cca22a3163c2ef9712b8e 2 | -------------------------------------------------------------------------------- /Entities/obj/Release/netstandard2.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Release/netstandard2.0/Entities.assets.cache -------------------------------------------------------------------------------- /Entities/obj/Release/netstandard2.0/Entities.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/Release/netstandard2.0/Entities.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Entities/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/project.assets.json -------------------------------------------------------------------------------- /Entities/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/Entities/obj/project.nuget.cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/README.md -------------------------------------------------------------------------------- /ReCapProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/ReCapProject.sln -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/CarImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CarsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/CarsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CreditCardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/CreditCardController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/PaymentController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/RentalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/RentalsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/WebAPI.csproj.user -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Autofac.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Autofac.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Autofac.Extras.DynamicProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Autofac.Extras.DynamicProxy.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Autofac.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Business.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Business.pdb -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Core.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Core.pdb -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/DataAccess.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/DataAccess.pdb -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Entities.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Entities.pdb -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/FluentValidation.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.deps.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.exe -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2ba159081b2463c81a3b13e7540958b05f8628b8 2 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.assets.cache -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 33cd48c290425637c2cb214d3835f67313dd4faf 2 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | bb0024885ecb584a51ed5097fa16e7363a0849d1 2 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/staticwebassets/WebAPI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/obj/Debug/netcoreapp3.1/staticwebassets/WebAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /WebAPI/obj/Release/netcoreapp3.1/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Release/netcoreapp3.1/WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI/obj/Release/netcoreapp3.1/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 82640d98cd2c5f29cbe11354a9b2186698b47f01 2 | -------------------------------------------------------------------------------- /WebAPI/obj/Release/netcoreapp3.1/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Release/netcoreapp3.1/WebAPI.assets.cache -------------------------------------------------------------------------------- /WebAPI/obj/Release/netcoreapp3.1/WebAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/Release/netcoreapp3.1/WebAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/obj/WebAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/WebAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /WebAPI/obj/WebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/WebAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /WebAPI/obj/WebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/WebAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /WebAPI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/project.assets.json -------------------------------------------------------------------------------- /WebAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/obj/project.nuget.cache -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/00020000-d49a-4436-90c1-6840148c00d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/00020000-d49a-4436-90c1-6840148c00d9.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/007966f7-94bb-4353-9b57-65506ca24925.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/007966f7-94bb-4353-9b57-65506ca24925.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/030dfee1-7875-434e-966e-c71ec36c7b73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/030dfee1-7875-434e-966e-c71ec36c7b73.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/0d0ba604-d162-4173-bc38-26b5e21d5ecf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/0d0ba604-d162-4173-bc38-26b5e21d5ecf.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/21f9c051-159e-4604-84eb-ed0a61dce694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/21f9c051-159e-4604-84eb-ed0a61dce694.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/2476dbf4-66a4-4b40-83e5-5e1a304680eb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/2476dbf4-66a4-4b40-83e5-5e1a304680eb.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/38349fd1-fde0-4d5d-800b-e54ef9fd0aa3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/38349fd1-fde0-4d5d-800b-e54ef9fd0aa3.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/386b65d3-b328-4236-aa93-d2d2671d49e6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/386b65d3-b328-4236-aa93-d2d2671d49e6.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/522f6fec-9690-433a-81f6-a6b3e6dbc24f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/522f6fec-9690-433a-81f6-a6b3e6dbc24f.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/5b4bbe3d-b6e0-4f12-8002-a7a7a7e2c3bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/5b4bbe3d-b6e0-4f12-8002-a7a7a7e2c3bb.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/66257e6d-d91f-4fe6-907e-66af01c721df.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/66257e6d-d91f-4fe6-907e-66af01c721df.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/6dde2406-48d9-4663-b503-0d707c032e9c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/6dde2406-48d9-4663-b503-0d707c032e9c.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/72200be2-10c9-4479-a3a6-7899bdfa8dbf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/72200be2-10c9-4479-a3a6-7899bdfa8dbf.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/7908b81c-2a40-4302-9bb0-552d840584ef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/7908b81c-2a40-4302-9bb0-552d840584ef.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/80268ace-5ef2-4b5a-b3fe-a7475a9b6cc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/80268ace-5ef2-4b5a-b3fe-a7475a9b6cc2.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/9250906f-7e0a-4043-98e0-44e765ae1af6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/9250906f-7e0a-4043-98e0-44e765ae1af6.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/972323f0-87ff-4a2f-823e-2b977e65b549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/972323f0-87ff-4a2f-823e-2b977e65b549.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/abe7ed64-9b74-47d8-ba51-b14ae70d550b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/abe7ed64-9b74-47d8-ba51-b14ae70d550b.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/bb6e5861-7b50-48aa-8908-c771586bf7c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/bb6e5861-7b50-48aa-8908-c771586bf7c7.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/d901ad77-06ef-49b8-afd6-93cd65dc097d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/d901ad77-06ef-49b8-afd6-93cd65dc097d.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/de3b5850-ecd9-426f-b3e4-b7ccdc537d83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/de3b5850-ecd9-426f-b3e4-b7ccdc537d83.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/default.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/Images/CarImages/default_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidjos03/Car-Rental-Project-Backend/HEAD/WebAPI/wwwroot/Upload/Images/CarImages/default_large.jpg --------------------------------------------------------------------------------