Esempio n. 1
0
 public BaseService(ICarRentalDbContext context)
 {
     Context = context;
 }
Esempio n. 2
0
 public VehicleModelService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 3
0
 public VehicleBrandService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 4
0
 public RentVehicleService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 5
0
 public FuelTypeService(ICarRentalDbContext context) : base(context)
 {
 }
 public UserOperationClaimService(ICarRentalDbContext context) : base(context)
 {
 }
 public VehicleRentalPriceService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 8
0
 public ColorTypeService(ICarRentalDbContext concent) : base(concent)
 {
 }
Esempio n. 9
0
 public RentalPeriodService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 10
0
 public VehicleClassTypeService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 11
0
 public TireTypeService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 12
0
 public TransmissionTypeService(ICarRentalDbContext context) : base(context)
 {
 }
Esempio n. 13
0
 public VehicleImageService(ICarRentalDbContext context, IFileUploadService fileUploadService) : base(context)
 {
     FileUploadService = fileUploadService;
 }
Esempio n. 14
0
 public UserService(ICarRentalDbContext context) : base(context)
 {
 }