├── .gitattributes ├── .gitignore ├── 1.png ├── NetCore.sln ├── NetCore ├── Controllers │ ├── CarController.cs │ └── TruckController.cs ├── DependencyInjection │ └── ServiceExtensions.cs ├── Dockerfile ├── Hub │ ├── CarHub.cs │ └── TruckHub.cs ├── Infrastructure │ ├── Context │ │ ├── ApplicationRole.cs │ │ ├── ApplicationUser.cs │ │ ├── ApplicationUserRole.cs │ │ └── VehicleContext.cs │ ├── Core │ │ ├── GenericRepositoryEntities.cs │ │ └── IGenericRepositoryEntities.cs │ ├── Entities │ │ ├── Car.cs │ │ ├── IVehicle.cs │ │ ├── Truck.cs │ │ └── Vehicle.cs │ └── Interfaces │ │ ├── ICarRepository.cs │ │ └── ITruckRepository.cs ├── Migrations │ ├── 20190827232631_InitialCreate.Designer.cs │ ├── 20190827232631_InitialCreate.cs │ ├── 20190827234837_Add-Year.Designer.cs │ ├── 20190827234837_Add-Year.cs │ ├── 20231110010217_new-change.Designer.cs │ ├── 20231110010217_new-change.cs │ ├── 20231110010502_new-change1.Designer.cs │ ├── 20231110010502_new-change1.cs │ ├── 20231111005900_millas.Designer.cs │ ├── 20231111005900_millas.cs │ └── VehicleContextModelSnapshot.cs ├── NetCore.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Repositories │ ├── CarRepository.cs │ ├── DataRepositories.cs │ └── TruckRepository.cs ├── Services │ ├── CarService.cs │ ├── DataServices.cs │ ├── Interfaces │ │ ├── ICarService.cs │ │ └── ITruckService.cs │ └── TruckService.cs ├── appsettings.json └── docker-compose.yml ├── README.md └── dotnet.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/.gitignore -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/1.png -------------------------------------------------------------------------------- /NetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore.sln -------------------------------------------------------------------------------- /NetCore/Controllers/CarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Controllers/CarController.cs -------------------------------------------------------------------------------- /NetCore/Controllers/TruckController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Controllers/TruckController.cs -------------------------------------------------------------------------------- /NetCore/DependencyInjection/ServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/DependencyInjection/ServiceExtensions.cs -------------------------------------------------------------------------------- /NetCore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Dockerfile -------------------------------------------------------------------------------- /NetCore/Hub/CarHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Hub/CarHub.cs -------------------------------------------------------------------------------- /NetCore/Hub/TruckHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Hub/TruckHub.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Context/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Context/ApplicationRole.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Context/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Context/ApplicationUser.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Context/ApplicationUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Context/ApplicationUserRole.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Context/VehicleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Context/VehicleContext.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Core/GenericRepositoryEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Core/GenericRepositoryEntities.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Core/IGenericRepositoryEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Core/IGenericRepositoryEntities.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Entities/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Entities/Car.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Entities/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Entities/IVehicle.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Entities/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Entities/Truck.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Entities/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Entities/Vehicle.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Interfaces/ICarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Interfaces/ICarRepository.cs -------------------------------------------------------------------------------- /NetCore/Infrastructure/Interfaces/ITruckRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Infrastructure/Interfaces/ITruckRepository.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20190827232631_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20190827232631_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20190827232631_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20190827232631_InitialCreate.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20190827234837_Add-Year.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20190827234837_Add-Year.Designer.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20190827234837_Add-Year.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20190827234837_Add-Year.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231110010217_new-change.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231110010217_new-change.Designer.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231110010217_new-change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231110010217_new-change.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231110010502_new-change1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231110010502_new-change1.Designer.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231110010502_new-change1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231110010502_new-change1.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231111005900_millas.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231111005900_millas.Designer.cs -------------------------------------------------------------------------------- /NetCore/Migrations/20231111005900_millas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/20231111005900_millas.cs -------------------------------------------------------------------------------- /NetCore/Migrations/VehicleContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Migrations/VehicleContextModelSnapshot.cs -------------------------------------------------------------------------------- /NetCore/NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/NetCore.csproj -------------------------------------------------------------------------------- /NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Program.cs -------------------------------------------------------------------------------- /NetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /NetCore/Repositories/CarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Repositories/CarRepository.cs -------------------------------------------------------------------------------- /NetCore/Repositories/DataRepositories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Repositories/DataRepositories.cs -------------------------------------------------------------------------------- /NetCore/Repositories/TruckRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Repositories/TruckRepository.cs -------------------------------------------------------------------------------- /NetCore/Services/CarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Services/CarService.cs -------------------------------------------------------------------------------- /NetCore/Services/DataServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Services/DataServices.cs -------------------------------------------------------------------------------- /NetCore/Services/Interfaces/ICarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Services/Interfaces/ICarService.cs -------------------------------------------------------------------------------- /NetCore/Services/Interfaces/ITruckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Services/Interfaces/ITruckService.cs -------------------------------------------------------------------------------- /NetCore/Services/TruckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/Services/TruckService.cs -------------------------------------------------------------------------------- /NetCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/appsettings.json -------------------------------------------------------------------------------- /NetCore/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/NetCore/docker-compose.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/README.md -------------------------------------------------------------------------------- /dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbkhum/NetCore-Backend/HEAD/dotnet.png --------------------------------------------------------------------------------