12 lines
330 B
C#
12 lines
330 B
C#
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.API.Application.IntegrationEvents
|
|
{
|
|
public interface IOrderingIntegrationEventService
|
|
{
|
|
Task PublishEventsThroughEventBusAsync();
|
|
Task AddAndSaveEventAsync(IntegrationEvent evt);
|
|
}
|
|
}
|