コード例 #1
0
        public static ShoppingCartLogic GetCart(HttpContextBase context)
        {
            var cart = new ShoppingCartLogic();

            cart.ShoppingCartId = cart.GetCartId(context);
            return(cart);
        }
コード例 #2
0
 public static ShoppingCartLogic GetCart(HttpContextBase context)
 {
     var cart = new ShoppingCartLogic();
     cart.ShoppingCartId = cart.GetCartId(context);
     return cart;
 }