コード例 #1
0
ファイル: CheckoutController.cs プロジェクト: jfkbcc/Shopper
        // GET: PlaceOrder
        public ActionResult PlaceOrder()
        {
            if (!ValidateShoppingCart())
            {
                return(View());
            }

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

            return(View());
        }