This commit is contained in:
2020-12-22 20:33:48 +00:00
parent 18df3ab55e
commit 3c5585b2ec
28 changed files with 301 additions and 199 deletions

View File

@@ -0,0 +1,12 @@
using System.Threading.Tasks;
using AyaNova.Models;
namespace AyaNova.Biz
{
/// <summary>
/// Interface for biz objects that support notification
/// </summary>
internal interface INotifiableObject
{
Task HandlePotentialNotificationEvent(AyaEvent ayaEvent, ICoreBizObjectModel newObject, ICoreBizObjectModel originalObject = null);
}
}