Interface IEventAggregate
Represents an aggregate that contains event that should be handled when saving the aggregate.
Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public interface IEventAggregate
Methods
RaiseEvent(IEvent)
Adds an event to the aggregate. The added event will be handled if an IEventSourceRepository is configured.
Declaration
void RaiseEvent(IEvent event)
Parameters
|
IEvent
event
The IEvent to add to the aggregate. |