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; }
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; }
public CarController(ICarTestDriveService carTestDriveService) { this.carTestDriveService = carTestDriveService; }