meysamhadeli a6f7bd46d5 - add flight read models
- add aircraft read models
- add airport read models
2022-07-15 18:36:41 +04:30

10 lines
229 B
C#

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