2017-04-03 13:13:40 +02:00
|
|
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-04-28 14:25:52 +02:00
|
|
|
|
namespace Ordering.API.Application.IntegrationEvents
|
2017-04-03 13:13:40 +02:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderingIntegrationEventService
|
|
|
|
|
{
|
2018-10-11 17:16:31 +02:00
|
|
|
|
Task PublishEventsThroughEventBusAsync();
|
|
|
|
|
Task AddAndSaveEventAsync(IntegrationEvent evt);
|
2017-04-03 13:13:40 +02:00
|
|
|
|
}
|
|
|
|
|
}
|