Esempio n. 1
0
        // GET: PlaceOrder
        public ActionResult PlaceOrder()
        {
            if (!ValidateShoppingCart())
            {
                return(View());
            }

            // Create a new order for the customer
            cartManager.CreateOrderFromCart();

            return(View());
        }