public static ShoppingCartLogic GetCart(HttpContextBase context)
        {
            var cart = new ShoppingCartLogic();

            cart.ShoppingCartId = cart.GetCartId(context);
            return(cart);
        }
 public static ShoppingCartLogic GetCart(HttpContextBase context)
 {
     var cart = new ShoppingCartLogic();
     cart.ShoppingCartId = cart.GetCartId(context);
     return cart;
 }