|
|
@ -1,8 +1,10 @@ |
|
|
|
using System; |
|
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events; |
|
|
|
using Ordering.API.Application.IntegrationEvents.Events; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Text; |
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events |
|
|
|
namespace TenantACustomisations.IntegrationEvents.Events |
|
|
|
{ |
|
|
|
public class CustomisationEvent : IntegrationEvent |
|
|
|
{ |
|
|
@ -11,10 +13,13 @@ namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events |
|
|
|
TenantId = tenantId; |
|
|
|
this.@event = @event; |
|
|
|
eventType = @event.GetType().Name; |
|
|
|
//TODO
|
|
|
|
userCheckoutAcceptedIntegrationEvent = (UserCheckoutAcceptedIntegrationEvent)@event; |
|
|
|
} |
|
|
|
|
|
|
|
public int TenantId { get; set; } |
|
|
|
public IntegrationEvent @event { get; set; } |
|
|
|
public String eventType { get; set; } |
|
|
|
public UserCheckoutAcceptedIntegrationEvent userCheckoutAcceptedIntegrationEvent { get; set; } |
|
|
|
} |
|
|
|
} |