19 lines
433 B
C#
19 lines
433 B
C#
|
|
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
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 流程绑定方法需要继承的接口
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="parameter"></param>
|
|||
|
|
Task Execute(WfMethodParameter parameter);
|
|||
|
|
}
|
|||
|
|
}
|