You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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