using MediatR; namespace IM.DomainCommons { public interface IDomainEvents { IEnumerable GetDomainEvents(); void AddDomainEvent(INotification eventItem); void AddDomainEventIfAbsent(INotification eventItem); void ClearDomainEvents(); } }