| 12345678910111213 | 
							- using System;
 - 
 - namespace Luticate2.Utils.Interfaces
 - {
 -     public interface ILuCrudNotifications
 -     {
 -         void NotifyCreate(Type crudType, object newEntity);
 - 
 -         void NotifyUpdate(Type crudType, object oldEntity, object newEntity);
 - 
 -         void NotifyDelete(Type crudType, object oldEntity);
 -     }
 - }
 
 
  |