15 lines
378 B
C#
15 lines
378 B
C#
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Ordering.API.IntegrationEvents
|
|||
|
{
|
|||
|
public interface IOrderingIntegrationEventService
|
|||
|
{
|
|||
|
Task SaveEventAsync(IntegrationEvent evt);
|
|||
|
Task PublishAsync(IntegrationEvent evt);
|
|||
|
}
|
|||
|
}
|