Example #1
0
        public string Delete(string StorerKey, string CustomerID)
        {
            WMS_CustomerService     service  = new WMS_CustomerService();
            Response <WMS_Customer> response = new Response <WMS_Customer>();

            try
            {
                response = service.DeleteWMS_Customer(StorerKey, CustomerID);
                if (response.IsSuccess)
                {
                    //ApplicationConfigHelper.RefreshProjectUserCustomers();
                    //ApplicationConfigHelper.RefreshApplicationCustomers();
                }
            }
            catch
            {
            }
            return(response.SuccessMessage);
        }