eShopOnContainers/src/Services/Payment/Payment.API/IntegrationEvents/IPaymentIntegrationEventService.cs

10 lines
242 B
C#
Raw Normal View History

namespace Payment.API.IntegrationEvents
{
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
public interface IPaymentIntegrationEventService
{
void PublishThroughEventBus(IntegrationEvent evt);
}
}