Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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