Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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