public ConsoleBackupRunner(IBackupEngine engine, ILogger logger, IList<IGetNotifiedWhenABackupIsCompleted> notifySources, IBackupEngineSettings settings)
 {
     _engine = engine;
     _logger = logger;
     _notifySources = notifySources;
     _settings = settings;
 }
Exemplo n.º 2
0
 public ConsoleBackupRunner(IBackupEngine engine, ILogger logger, IList <IGetNotifiedWhenABackupIsCompleted> notifySources, IBackupEngineSettings settings)
 {
     _engine        = engine;
     _logger        = logger;
     _notifySources = notifySources;
     _settings      = settings;
 }
Exemplo n.º 3
0
 public BackupEngine(IEnumerable <IBackupSource> backupSources, ICompressData compressor, IEnumerable <IStorageSource> storageSource, IBackupEngineSettings settings, ILogger logger)
 {
     _backupSources = backupSources;
     _compressor    = compressor;
     _storageSource = storageSource;
     _settings      = settings;
     _logger        = logger;
 }
Exemplo n.º 4
0
 public BackupEngine(IEnumerable<IBackupSource> backupSources, ICompressData compressor, IEnumerable<IStorageSource> storageSource, IBackupEngineSettings settings, ILogger logger)
 {
     _backupSources = backupSources;
     _compressor = compressor;
     _storageSource = storageSource;
     _settings = settings;
     _logger = logger;
 }