You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
|
|
}
|
|
}
|