示例#1
0
 public ShopCartController(IAllCar carRepository, ShopCart shopCart)
 {
     _cartRepository = carRepository;
     _shopcart       = shopCart;
 }
 public HomeController(IAllCar carRepositoryb)
 {
     _cartRepository = carRepositoryb;
 }
 public CarsController(IAllCar allCars, IAllCategory allCategories)
 {
     _cars       = allCars;
     _categories = allCategories;
 }