您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ILuNotificationsBusiness.cs 583B

1234567891011121314151617
  1. using System;
  2. namespace Luticate2.Utils.Interfaces
  3. {
  4. public interface ILuNotificationsBusiness
  5. {
  6. void Notify(string eventName, string entityType, object oldEntity, object newEntity,
  7. Func<string, bool> filter = null);
  8. void NotifyCreate(string entityType, object newEntity, Func<string, bool> filter = null);
  9. void NotifyUpdate(string entityType, object oldEntity, object newEntity,
  10. Func<string, bool> filter = null);
  11. void NotifyDelete(string entityType, object oldEntity, Func<string, bool> filter = null);
  12. }
  13. }