Example #1
0
 private static RoundhouseRedGateCompareRunner get_diff_runner(ConfigurationPropertyHolder configuration, RoundhouseMigrationRunner migration_runner)
 {
     return new RoundhouseRedGateCompareRunner(
         Container.get_an_instance_of<KnownFolders>(),
         Container.get_an_instance_of<FileSystemAccess>(),
         configuration, migration_runner);
 }
 public RoundhouseRedGateCompareRunner(KnownFolders known_folders, FileSystemAccess file_system, ConfigurationPropertyHolder configuration, RoundhouseMigrationRunner migration_runner)
 {
     this.known_folders = known_folders;
     this.file_system = file_system;
     this.configuration = configuration;
     this.migration_runner = migration_runner;
 }
 public RoundhouseRedGateCompareRunner(KnownFolders known_folders, FileSystemAccess file_system, ConfigurationPropertyHolder configuration, RoundhouseMigrationRunner migration_runner)
 {
     this.known_folders    = known_folders;
     this.file_system      = file_system;
     this.configuration    = configuration;
     this.migration_runner = migration_runner;
 }
 public RoundhouseUpdateCheckRunner(
     EnvironmentSet environment_set,
     KnownFolders known_folders,
     FileSystemAccess file_system,
     DatabaseMigrator database_migrator,
     ConfigurationPropertyHolder configuration,
     RoundhouseMigrationRunner migration_runner)
 {
     this.environment_set   = environment_set;
     this.known_folders     = known_folders;
     this.file_system       = file_system;
     this.database_migrator = database_migrator;
     this.configuration     = configuration;
     this.migration_runner  = migration_runner;
 }