17 行
521 B
C#
17 行
521 B
C#
|
// ********************************************************************************
|
|||
|
// 文件名字: IEventHandler
|
|||
|
// 文件描述: IEventHandler
|
|||
|
// 开发人员: Hupe
|
|||
|
// 创建时间: 2021/10/14 16:22
|
|||
|
// ********************************************************************************
|
|||
|
using ARI.EAP.HOST.SRD;
|
|||
|
using Glorysoft.SECSwell;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Glorysoft.SECS.EQP.Common
|
|||
|
{
|
|||
|
public interface IEventHandler
|
|||
|
{
|
|||
|
void Execute(SECSTransaction trans, EVENT even);
|
|||
|
}
|
|||
|
}
|