13 lines
301 B
C#
13 lines
301 B
C#
using MediatR;
|
|
|
|
namespace IM.DomainCommons
|
|
{
|
|
public interface IDomainEvents
|
|
{
|
|
IEnumerable<INotification> GetDomainEvents();
|
|
void AddDomainEvent(INotification eventItem);
|
|
void AddDomainEventIfAbsent(INotification eventItem);
|
|
void ClearDomainEvents();
|
|
}
|
|
}
|