コード例 #1
0
 public SqlServerMigrationExecutor(IClock clock, IApplicationContext appContext,
     IConnectionStringProvider connectionStringProvider, IDBMigrationTablesManager migrationTablesManager, IScriptsGenerator scriptsGenerator)
 {
     this.clock = clock;
     this.appContext = appContext;
     this.connectionStringProvider = connectionStringProvider;
     this.migrationTablesManager = migrationTablesManager;
     this.scriptsGenerator = scriptsGenerator;
 }
コード例 #2
0
 public InstancesController(IApplicationContext appContext, IDBMigrationTablesManager migrationTablesManager)
 {
     this.appContext = appContext;
     this.migrationTablesManager = migrationTablesManager;
 }