コード例 #1
0
ファイル: ShoppingCart.cs プロジェクト: FRAIDEL/shopping_cart
        public static ShoppingCart GetCart(HttpContextBase context)
        {
            var cart = new ShoppingCart();

            cart.ShoppingCartId = cart.GetCartId(context);
            return(cart);
        }
コード例 #2
0
ファイル: ShoppingCart.cs プロジェクト: FRAIDEL/shopping_cart
 public static ShoppingCart GetCart(HttpContextBase context)
 {
     var cart = new ShoppingCart();
     cart.ShoppingCartId = cart.GetCartId(context);
     return cart;
 }