2022-07-31 01:39:37 +04:30

10 lines
230 B
C#

using BuildingBlocks.Core.Event;
namespace BuildingBlocks.Core;
public interface IEventMapper
{
IIntegrationEvent MapToIntegrationEvent(IDomainEvent @event);
IInternalCommand MapToInternalCommand(IDomainEvent @event);
}