Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

há 2 anos
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. }