Beispiel #1
0
        public object GetCustomerByMphone(string mPhone)
        {
            try
            {
                return(_customerSevice.GetCustomerByMphone(mPhone));
            }

            catch (Exception ex)
            {
                return(errorLogService.InsertToErrorLog(ex, MethodBase.GetCurrentMethod().Name, Request.Headers["UserInfo"].ToString()));
            }
        }