public VehicleRentalPriceController(IVehicleRentalPriceService vehicleRentalPriceService,
                                     IVehicleService vehicleService,
                                     IRentalPeriodService rentalPeriodService)
 {
     VehicleRentalPriceService = vehicleRentalPriceService;
     VehicleService            = vehicleService;
     RentalPeriodService       = rentalPeriodService;
 }
예제 #2
0
 public VehicleController(IVehicleService service, IColorTypeService colorTypeService, IFuelTypeService fuelTypeService, ITireTypeService tireTypeService, ITransmissionTypeService transmissionTypeService, IVehicleBrandService vehicleBrandService, IVehicleClassTypeService vehicleClassTypeService, IVehicleModelService vehicleModelService, IVehicleImageService vehicleImageService, IVehicleRentalPriceService vehicleRentalPriceService)
 {
     VehicleService            = service;
     ColorTypeService          = colorTypeService;
     FuelTypeService           = fuelTypeService;
     TireTypeService           = tireTypeService;
     TransmissionTypeService   = transmissionTypeService;
     VehicleClassTypeService   = vehicleClassTypeService;
     VehicleModelService       = vehicleModelService;
     VehicleImageService       = vehicleImageService;
     VehicleRentalPriceService = vehicleRentalPriceService;
 }
예제 #3
0
 public VehicleRentalPriceCalculatorService(IVehicleRentalPriceService vehicleRentalPriceService,
                                            IRentVehicleService rentVehicleService)
 {
     VehicleRentalPriceService = vehicleRentalPriceService;
     RentVehicleService        = rentVehicleService;
 }