public InstallationRunner(IEnvironmentGateway gateway, IInstallationLogger logger) { _gateway = gateway; _logger = logger; }
public virtual void RunTheEnvironment(InstallInput input, IEnvironmentGateway gateway) { var runner = new InstallationRunner(gateway, new InstallationLogger()); runner.RunTheInstallation(input); }