// GET: ShoppingCart
        public ActionResult Index()
        {
            var cart = new ShoppingCartService(HttpContext);
            var items = cart.GetCartItems();

            return View(new ShoppingCartViewModel
            {
                Items = items,
                Total = CalcuateCart(items)
            });
        }