Exemple #1
0
 public ReservationService(IReservationRepository repository, ICarService carService, ICarModelService carModelService, ICarCategoryService carCategoryService, IRentalContractService rentalContractService)
 {
     _repository            = repository;
     _carService            = carService;
     _carModelService       = carModelService;
     _carCategoryService    = carCategoryService;
     _rentalContractService = rentalContractService;
 }
 public CarCategoryController(ICarCategoryService carCategoryService)
 {
     _carCategoryService = carCategoryService;
 }