using ce.autofac.extension; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.WorkFlow { public interface IWorkFlowMethod : IBLL { /// /// 流程绑定方法需要继承的接口 /// /// Task Execute(WfMethodParameter parameter); } }