Ejemplo n.º 1
0
        // Navbar cart info
        public PartialViewResult ShoppingCart()
        {
            CartLayoutViewModel model = new CartLayoutViewModel();

            model.LoggedInUser = cartService.GetCurrentUserSynch();

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

            return PartialView("~/Views/Shared/_ShoppingCart.cshtml", model);
        }