public CustomerController(ICustomerService customerService, IRentedCarsRecordService rentedCarsRecordService)
 {
     _customerService         = customerService;
     _rentedCarsRecordService = rentedCarsRecordService;
 }
 public RentedCarsRecordController(IRentedCarsRecordService rentedCarsRecordService, ICustomerService customerService, ICarService carService)
 {
     _rentedCarsRecordService = rentedCarsRecordService;
     _customerService         = customerService;
     _carService = carService;
 }
Esempio n. 3
0
 public CarController(ICarService carService, IRentedCarsRecordService rentedCarsRecordService)
 {
     _carService = carService;
     _rentedCarsRecordService = rentedCarsRecordService;
 }