namespace Infrastructure.EventBus; public interface IIntegrationEventHandler where TIntegrationEvent : IntegrationEvent { Task HandleAsync(TIntegrationEvent integrationEvent); }