Пример #1
0
        public BackupProgress GetRestoreProgress(int tenantId)
        {
            var progress = BackupWorker.GetRestoreProgress(tenantId);

            if (progress != null && !string.IsNullOrEmpty(progress.Error))
            {
                throw new FaultException(progress.Error);
            }
            return(progress);
        }
Пример #2
0
 public BackupProgress GetRestoreProgress(int tenantId)
 {
     return(BackupWorker.GetRestoreProgress(tenantId));
 }