12 lines
378 B
C#
12 lines
378 B
C#
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);
|
|
}
|
|
} |