using System.Threading.Tasks; using AyaNova.Models; namespace AyaNova.Biz { /// /// Interface for biz objects that support notification /// internal interface INotifiableObject { Task HandlePotentialNotificationEvent(AyaEvent ayaEvent, ICoreBizObjectModel newObject, ICoreBizObjectModel originalObject = null); } }