示例#1
0
 public EnvironmentSeedController(
     AppSettings settings,
     IEnvironmentSeedCommand command
     ) : base(settings)
 {
     _command = command;
 }
 public EnvironmentSeedController(
     IEnvironmentSeedCommand command,
     AppSettings settings
     )
 {
     _command  = command;
     _settings = settings;
 }
示例#3
0
 public EnvironmentSeedController(
     IEnvironmentSeedCommand command
     )
 {
     _command = command;
 }