19 lines
591 B
C#
19 lines
591 B
C#
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
|
|
namespace Ordering.SignalrHub.IntegrationEvents.Events
|
|
{
|
|
public class OrderStatusChangedToStockConfirmedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get; }
|
|
public string OrderStatus { get; }
|
|
public string BuyerName { get; }
|
|
|
|
public OrderStatusChangedToStockConfirmedIntegrationEvent(int orderId, string orderStatus, string buyerName)
|
|
{
|
|
OrderId = orderId;
|
|
OrderStatus = orderStatus;
|
|
BuyerName = buyerName;
|
|
}
|
|
}
|
|
}
|