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

            //rewrite this
            //cart.ShoppingCartId = cart.GetCartId(context);
            return(cart);
        }
コード例 #2
0
ファイル: ShoppingCart.cs プロジェクト: Wyrmnax/TOTVSClean
 public ShoppingCart(TOTVSContext context)
 {
     _context = context;
 }