示例#1
0
 public Program(
     IRunner scenarioRunner,
     IEndpointProvider endpointProvider,
     IOutput output,
     IScenarioTypeFinder scenarioTypeFinder,
     ILogger logger)
 {
     this.scenarioRunner = scenarioRunner;
     this.endpointProvider = endpointProvider;
     this.output = output;
     this.scenarioTypeFinder = scenarioTypeFinder;
     this.logger = logger;
 }
示例#2
0
 public Runner(ILifetimeScope container, IScenarioTypeFinder scenarioTypeFinder)
 {
     this.container = container;
     this.scenarioTypeFinder = scenarioTypeFinder;
 }