using Serein.Library.Api; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Serein.Library { /// /// 脚本代码中关于流程运行的API /// public class ScriptFlowApi : IScriptFlowApi { /// /// 流程环境 /// public IFlowEnvironment Env { get; private set; } /// /// 创建流程脚本接口 /// /// public ScriptFlowApi(IFlowEnvironment environment) { Env = environment; } Task IScriptFlowApi.CallNode(string nodeGuid) { throw new NotImplementedException(); } object IScriptFlowApi.GetDataOfParams(int index) { throw new NotImplementedException(); } object IScriptFlowApi.GetDataOfParams(string name) { throw new NotImplementedException(); } object IScriptFlowApi.GetFlowData() { throw new NotImplementedException(); } object IScriptFlowApi.GetGlobalData(string keyName) { throw new NotImplementedException(); } } }