Exemple #1
0
 public Runner(
     IConfigurationLoader configurationLoader,
     IBootstrapperFactory bootstrapperFactory,
     IBridgeFactory bridgeFactory,
     string configurationName,
     string runName)
 {
     this.configurationLoader = configurationLoader;
     this.bootstrapperFactory = bootstrapperFactory;
     this.bridgeFactory       = bridgeFactory;
     this.configurationName   = configurationName;
     this.runName             = runName;
     this.runData             = new Dictionary <string, object>();
     this.configuration       =
         new Lazy <ConfigurationWrapper>(this.LoadConfiguration);
     this.contextFactory = null;
 }
Exemple #2
0
 public void Init(IBridgeFactory factory)
 {
     Bridge = factory.Create();
 }