public UserAccountController(ICarDTOService carDtoService, IStationDTOService stationDtoService, IOrderDTOService orderDtoService, ICustomerDTOService customerDtoService)
 {
     _customerService = customerDtoService;
     _orderService = orderDtoService;
     _stationService = stationDtoService;
     _carService = carDtoService;
 }
Exemple #2
0
 public WorkerController(ICarDTOService carDtoService,IStationDTOService stationDtoService)
 {
     _carDtoService = carDtoService;
     _stationjDtoService = stationDtoService;
 }