public DeploymentController(IProfileReader reader, IDiagnosticsReporter reporter, IDirectiveRunnerFactory factory, IBottleRepository bottles, IFileSystem system)
 {
     _reader = reader;
     _reporter = reporter;
     _factory = factory;
     _bottles = bottles;
     _system = system;
 }
Example #2
0
 public DeploymentController(IProfileReader reader, IDeploymentDiagnostics diagnostics, IDirectiveRunnerFactory factory)
 {
     _reader = reader;
     _diagnostics = diagnostics;
     _factory = factory;
 }
Example #3
0
 public DeploymentController(IProfileReader reader, IDeploymentDiagnostics diagnostics, IDirectiveRunnerFactory factory)
 {
     _reader      = reader;
     _diagnostics = diagnostics;
     _factory     = factory;
 }