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