private void ReportProgress(ISyncProgress syncProgress, int totalStepts, int currentStep, string label)
 {
     if (syncProgress != null)
     {
         syncProgress.ReportProgress(totalStepts, currentStep, label);
     }
 }
 private void ReportProgress(ISyncProgress syncProgress, int totalStepts, int currentStep, string label)
 {
     if (syncProgress != null)
         syncProgress.ReportProgress(totalStepts, currentStep, label);
 }