Example #1
0
 public HomeController(IGetCars carRep, ShopCart shopCart)
 {
     _carRep   = carRep;
     _shopCart = shopCart;
 }
Example #2
0
 public CarsController(IGetCars iGetCars, ICarsCategory iCarsCategory)
 {
     _getCars      = iGetCars;
     _carsCategory = iCarsCategory;
 }
Example #3
0
 public CarsController(IGetCars getCars, ICarsCategory allCarsCategories)
 {
     _getCars           = getCars;
     _allCarsCategories = allCarsCategories;
 }