public IActionResult Index() { var items = _shoppingCart.GetShoppinCartItems(); _shoppingCart.ShoppinCartItems = items; var sCVM = new ShoppingCartViewModel { ShoppingCart = _shoppingCart, ShoppingCartTotal = _shoppingCart.GetShoppingCartTotal() }; return(View(sCVM)); }
public IViewComponentResult Invoke() { var items = _shoppingCart.GetShoppinCartItems(); _shoppingCart.ShoppinCartItems = items; var shoppingCartViewModel = new ShoppingCartViewModel { ShoppingCart = _shoppingCart, ShoppingCartTotal = _shoppingCart.GetShoppingCartTotal() }; return(View(shoppingCartViewModel)); }