// Navbar cart info public PartialViewResult ShoppingCart() { CartLayoutViewModel model = new CartLayoutViewModel(); model.LoggedInUser = cartService.GetCurrentUserSynch(); return(PartialView("~/Views/Shared/_ShoppingCart.cshtml", model)); }
// Navbar cart info public PartialViewResult ShoppingCart() { CartLayoutViewModel model = new CartLayoutViewModel(); model.LoggedInUser = cartService.GetCurrentUserSynch(); return PartialView("~/Views/Shared/_ShoppingCart.cshtml", model); }