選択できるのは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. }