Exemplo n.º 1
0
 public SearchController(
     ICarsService carsService,
     ICookiesService cookiesService,
     ICarTestDriveService carTestDriveService)
 {
     this.carsService         = carsService;
     this.cookiesService      = cookiesService;
     this.carTestDriveService = carTestDriveService;
 }
 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;
 }
Exemplo n.º 3
0
 public NewInventoryController(
     ICookiesService cookiesService,
     INewCarRepository newCarRepository,
     ICarsService carsService,
     ICarsFilterTypesService carsFilterTypesService,
     ICacheService cacheService,
     ICarTestDriveService carTestDriveService)
 {
     this.cookiesService         = cookiesService;
     this.newCarRepository       = newCarRepository;
     this.carsService            = carsService;
     this.carsFilterTypesService = carsFilterTypesService;
     this.cacheService           = cacheService;
     this.carTestDriveService    = carTestDriveService;
 }
Exemplo n.º 4
0
 public CarController(ICarTestDriveService carTestDriveService)
 {
     this.carTestDriveService = carTestDriveService;
 }