Example #1
0
        public bool DeleteOrderByShopId(string ShopId)
        {
            bool Result = false;

            try
            {
                Result = _orderData.DeleteOrderByShopId(ShopId);
            }
            catch (Exception)
            {
            }
            return(Result);
        }
Example #2
0
        public bool Delete(string Id)
        {
            bool Result = false;

            try
            {
                DeleteUserConnectorByShopId(Id);
                _orderData.DeleteOrderByShopId(Id);
                Result = _shopData.Delete(Id);
            }
            catch (Exception)
            {
            }
            return(Result);
        }