No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
521 B

  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. }