コード例 #1
0
ファイル: Cart.cs プロジェクト: anthrax3/mojoPortal-WebStore
        public bool HasShippingProducts()
        {
            int count = DBCart.GetItemCountByFulfillmentType(this.cartGuid, (byte)FulfillmentType.PhysicalShipment);

            return(count > 0);
        }
コード例 #2
0
ファイル: Cart.cs プロジェクト: anthrax3/mojoPortal-WebStore
        public bool HasDownloadProducts()
        {
            int count = DBCart.GetItemCountByFulfillmentType(this.cartGuid, (byte)FulfillmentType.Download);

            return(count > 0);
        }