public CarsController(IAllCar allCars, IAllCategory allCategories)
 {
     _cars       = allCars;
     _categories = allCategories;
 }
Пример #2
0
 public ProductController(IAllProduct allProduct, IAllCategory allCategory)
 {
     _AllProduct  = allProduct;
     _AllCategory = allCategory;
 }
Пример #3
0
 public CarsController(IAllCars allCars, IAllCategory allCategory)
 {
     _allCars     = allCars;
     _allCategory = allCategory;
 }