IAlarmDefineService.cs 481 B

12345678910111213141516171819202122
  1. using Aitex.Core.RT.Event;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.ServiceModel;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MECF.Framework.Common.Alarms
  9. {
  10. [ServiceContract]
  11. public interface IAlarmDefineService
  12. {
  13. [OperationContract]
  14. Dictionary<string, Dictionary<string, EventItem>> GetAlarmDefineTemplate();
  15. [OperationContract]
  16. string GetStringAlarmDefineTemplate();
  17. }
  18. }