Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BackupController"/> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 public BackupController(IScheduledBackupRepository repository)
 {
     Requires.NotNull(repository, nameof(repository));
     _repository = repository;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HomeController"/> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 public HomeController(IScheduledBackupRepository repository)
 {
     _repository = repository;
 }