Esempio n. 1
0
 public CarsController(GetCarsUseCase getCarsUseCase, CreateCarUseCase createCarUseCase)
 {
     _getCarsUseCase   = getCarsUseCase;
     _createCarUseCase = createCarUseCase;
 }
Esempio n. 2
0
 public CarsController(CreateCarUseCase createCar, GetCarsUseCase getCars, GetCarByIdUseCase getCarById)
 {
     _createCar  = createCar;
     _getCars    = getCars;
     _getCarById = getCarById;
 }