Ejemplo n.º 1
0
 public void ProcessSyncChanges()
 {
     try
     {
         var changes = syncChangesData.GetNextSetOfChanges();
         while (changes.Count > 0)
         {
             ProcessChangeSet(changes);
             changes = syncChangesData.GetNextSetOfChanges();
         }
     }
     catch (Exception exception)
     {
         exception.WriteToApplicationLog();
     }
 }