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.

ILuCrudNotifications.cs 324B

12345678910111213
  1. using System;
  2. namespace Luticate2.Utils.Interfaces
  3. {
  4. public interface ILuCrudNotifications
  5. {
  6. void NotifyCreate(Type crudType, object newEntity);
  7. void NotifyUpdate(Type crudType, object oldEntity, object newEntity);
  8. void NotifyDelete(Type crudType, object oldEntity);
  9. }
  10. }