- Refactor PublishThroughEventBusAsync methods from OrderingIntegrationEventService - Add private empty Address constructor. - Modify order aggregate methods. - Remove GetWithDependenciesAsync methods and modify GetAsync with entity framework Explicit loading.
11 lines
287 B
C#
11 lines
287 B
C#
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.API.Application.IntegrationEvents
|
|
{
|
|
public interface IOrderingIntegrationEventService
|
|
{
|
|
Task PublishThroughEventBusAsync(IntegrationEvent evt);
|
|
}
|
|
}
|