Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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