10 lines
242 B
C#
10 lines
242 B
C#
|
namespace Payment.API.IntegrationEvents
|
|||
|
{
|
|||
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|||
|
|
|||
|
public interface IPaymentIntegrationEventService
|
|||
|
{
|
|||
|
void PublishThroughEventBus(IntegrationEvent evt);
|
|||
|
}
|
|||
|
}
|