示例#1
0
        public ActionResult Index()
        {
            ShopingCart cart = new ShopingCart(calculator)
            {
                Products = products
            };
            decimal totalValue = cart.CalculateProductTotal();

            return(View(totalValue));
        }