Exemplo n.º 1
0
 public PythonScriptEngine(IScriptParser parser, IEnumerable <IGlobalProvider> globalProviders, IEventAggregator eventAggregator, IThreadTimingFactory threadTimingFactory)
 {
     this.parser              = parser;
     this.globalProviders     = globalProviders;
     this.eventAggregator     = eventAggregator;
     this.threadTimingFactory = threadTimingFactory;
 }
Exemplo n.º 2
0
 public PythonScriptEngine(
     IScriptParser parser,
     IEnumerable <IGlobalProvider> globalProviders,
     IEventAggregator eventAggregator,
     IThreadTimingFactory threadTimingFactory,
     IPaths paths,
     ILog log,
     IFileSystem fileSystem)
 {
     this.parser              = parser;
     this.globalProviders     = globalProviders;
     this.eventAggregator     = eventAggregator;
     this.threadTimingFactory = threadTimingFactory;
     this.paths      = paths;
     this.log        = log;
     this.fileSystem = fileSystem;
 }
Exemplo n.º 3
0
 public SystemHelper(IThreadTimingFactory threadTimingFactory)
 {
     this.threadTimingFactory = threadTimingFactory;
 }
 public SystemHelper(IThreadTimingFactory threadTimingFactory)
 {
     this.threadTimingFactory = threadTimingFactory;
 }
Exemplo n.º 5
0
 public SystemHelper(IThreadTimingFactory threadTimingFactory, IEventAggregator eventAggregator)
 {
     this.threadTimingFactory = threadTimingFactory;
     this.eventAggregator     = eventAggregator;
 }