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