25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IEventHandler.cs 521 B

2 년 전
1234567891011121314151617
  1. // ********************************************************************************
  2. // 文件名字: IEventHandler
  3. // 文件描述: IEventHandler
  4. // 开发人员: Hupe
  5. // 创建时间: 2021/10/14 16:22
  6. // ********************************************************************************
  7. using ARI.EAP.HOST.SRD;
  8. using Glorysoft.SECSwell;
  9. using System.Collections.Generic;
  10. namespace Glorysoft.SECS.EQP.Common
  11. {
  12. public interface IEventHandler
  13. {
  14. void Execute(SECSTransaction trans, EVENT even);
  15. }
  16. }