public UsedInventoryController(
     ICookiesService cookiesService,
     IUsedCarRepository usedCarRepository,
     ICarsService carsService,
     ICarsFilterTypesService carsFilterTypesService,
     ICacheService cacheService,
     ICarTestDriveService carTestDriveService)
 {
     this.cookiesService         = cookiesService;
     this.usedCarRepository      = usedCarRepository;
     this.carsService            = carsService;
     this.carsFilterTypesService = carsFilterTypesService;
     this.cacheService           = cacheService;
     this.carTestDriveService    = carTestDriveService;
 }
Exemple #2
0
 public UsedCarController(IUsedCarRepository repo)
 {
     this.repo = repo;
 }