using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events; using System; using System.Threading.Tasks; namespace Ordering.API.Application.IntegrationEvents { public interface IOrderingIntegrationEventService { Task PublishEventsThroughEventBusAsync(Guid transactionId); Task AddAndSaveEventAsync(IntegrationEvent evt); } }