public HomeController(IRockRepository rockRepository) { _rockRepository = rockRepository; }
public RockController(IRockRepository rockRepository, IHostingEnvironment hostingEnvironment) { _rockRepository = rockRepository; _hostingEnvironment = hostingEnvironment; }
public ShopController(IRockRepository rockRepository) { _rockRepository = rockRepository; }
public ShoppingCartController(IRockRepository rockRepository, ShoppingCart shoppingCart) { _rockRepository = rockRepository; _shoppingCart = shoppingCart; }