添加项目文件。
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using MediatR;
|
||||
|
||||
namespace IM.DomainCommons
|
||||
{
|
||||
public interface IDomainEvents
|
||||
{
|
||||
IEnumerable<INotification> GetDomainEvents();
|
||||
void AddDomainEvent(INotification eventItem);
|
||||
void AddDomainEventIfAbsent(INotification eventItem);
|
||||
void ClearDomainEvents();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user