Пример #1
0
 public wsCustomerResult[] GetAllCustomers()
 {
     try
     {
         return(virtualDinerwareClient.GetAllCustomers(10000, 10000, ""));
     }
     catch (Exception ex)
     {
         logger.WriteLogError("**** Dinerware VirtualClient FAILURE: GetAllCustomers Exception Error= " + ex.Message);
         if (ex.InnerException != null)
         {
             logger.WriteLogError("**** InnerException  = " + ex.InnerException.Message);
         }
         throw ex;
     }
 }