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