15 lines
418 B
C#
15 lines
418 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 SaveEventAndOrderingContextChangesAsync(IntegrationEvent evt);
|
|
Task PublishThroughEventBusAsync(IntegrationEvent evt);
|
|
}
|
|
}
|