public DbBackupApp(IDbBackupRepository dbBackupRepository)
 {
     this.service = dbBackupRepository;
 }
示例#2
0
 public DbBackupService(IDbBackupRepository repository) : base(repository)
 {
 }
 public DbBackupService(IDbBackupRepository service)
 {
     this.service = service;
 }
示例#4
0
 public DbBackupService(IDbBackupRepository repository, ILogService logService) : base(repository)
 {
     _repository = repository;
     _logService = logService;
 }