public LiveRunnerServices(EngineController controller) { this.controller = controller; liveRunner = LiveRunnerFactory.CreateLiveRunner(controller); liveRunner.GraphUpdateReady += GraphUpdateReady; liveRunner.NodeValueReady += NodeValueReady; }
public LiveRunnerServices(EngineController controller, string geometryFactoryFileName) { liveRunner = LiveRunnerFactory.CreateLiveRunner(controller, geometryFactoryFileName); }
public LiveRunnerServices(DynamoModel dynamoModel, EngineController controller, string geometryFactoryFileName) { this.dynamoModel = dynamoModel; liveRunner = LiveRunnerFactory.CreateLiveRunner(controller, geometryFactoryFileName); }