mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 04:06:07 +08:00
10 lines
230 B
C#
10 lines
230 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Core;
|
|
|
|
public interface IEventMapper
|
|
{
|
|
IIntegrationEvent MapToIntegrationEvent(IDomainEvent @event);
|
|
IInternalCommand MapToInternalCommand(IDomainEvent @event);
|
|
}
|