mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-26 15:51:08 +08:00
10 lines
225 B
C#
10 lines
225 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Core;
|
|
|
|
public interface IEventMapper
|
|
{
|
|
IIntegrationEvent Map(IDomainEvent @event);
|
|
IEnumerable<IIntegrationEvent> MapAll(IEnumerable<IDomainEvent> events);
|
|
}
|