示例#1
0
 public void SynchProviders(String RegistrationKey, List <Providerm> providerList)
 {
     try {
         Logger.Information("In SynchProviders");
         customerNum = util.GetDentalOfficeID(RegistrationKey);
         if (customerNum == 0)
         {
             return;
         }
         Providerms.UpdateFromChangeList(providerList, customerNum);
     }
     catch (Exception ex) {
         Logger.LogError("IpAddress=" + HttpContext.Current.Request.UserHostAddress + " DentalOfficeID=" + customerNum, ex);
         throw new Exception("Exception in SynchProviders");
     }
 }