public FuelTypeController(IUnitOfWork <Context> uow, IFuelTypeAppService fuelTypeAppService)
 {
     _uow = uow;
     _fuelTypeAppService = fuelTypeAppService;
 }
예제 #2
0
 public CarsController(IUnitOfWork <Context> uow, ICarAppService carService, IFuelTypeAppService fuelTypeService)
 {
     _uow             = uow;
     _carService      = carService;
     _fuelTypeService = fuelTypeService;
 }