예제 #1
0
 public CleanSchemaCommand(CleanSchemaOptions options, BoundConfig config)
 {
     _options = options;
     _config  = config;
 }
예제 #2
0
 protected PostInitCommandBase(BoundConfig config, string[] commandLineArgs)
 {
     Config          = config;
     CommandLineArgs = commandLineArgs;
 }
예제 #3
0
 public VersioningCommandBase(BoundConfig config, string[] commandLineArgs)
     : base(config, commandLineArgs)
 {
 }
예제 #4
0
 public UndoCommand(UndoOptions options, BoundConfig config, string[] commandLineArgs)
     : base(config, commandLineArgs)
     => _options = options;
예제 #5
0
 public RerunCommand(RerunOptions options, BoundConfig config)
 {
     _options = options;
     _config  = config;
 }
예제 #6
0
 public UpgradeCommand(UpgradeOptions options, BoundConfig config, string[] commandLineArgs)
     : base(config, commandLineArgs)
     => _options = options;
예제 #7
0
 public MigrateCommand(MigrateOptions options, BoundConfig config)
 {
     _options = options;
     _config  = config;
 }
예제 #8
0
 public DowngradeCommand(DowngradeOptions options, BoundConfig config)
 {
     _options = options;
     _config  = config;
 }