Beispiel #1
0
        public string GetShoppingCart(int storeId)
        {
            ShoppingCart ret;

            try
            {
                ret = TransactionService.GetShoppingCart(user, storeId);
                return(objDynamicJson(ret));
            }
            catch (Exception e)
            {
                return(generateMessageFormatJason(e.Message));
            }
        }
Beispiel #2
0
 public ShoppingCart GetShoppingCart(int storeId)
 {
     return(TransactionService.GetShoppingCart(user, storeId));
 }