2021-10-11 17:57:30 +05:30
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.SignalrHub.IntegrationEvents.Events;
|
2018-04-19 00:58:09 +02:00
|
|
|
|
|
2021-10-11 17:57:30 +05:30
|
|
|
|
public record OrderStatusChangedToShippedIntegrationEvent : IntegrationEvent
|
2018-04-19 00:58:09 +02:00
|
|
|
|
{
|
2021-10-11 17:57:30 +05:30
|
|
|
|
public int OrderId { get; }
|
|
|
|
|
public string OrderStatus { get; }
|
|
|
|
|
public string BuyerName { get; }
|
2018-04-19 00:58:09 +02:00
|
|
|
|
|
2021-10-11 17:57:30 +05:30
|
|
|
|
public OrderStatusChangedToShippedIntegrationEvent(int orderId, string orderStatus, string buyerName)
|
|
|
|
|
{
|
|
|
|
|
OrderId = orderId;
|
|
|
|
|
OrderStatus = orderStatus;
|
|
|
|
|
BuyerName = buyerName;
|
2018-04-19 00:58:09 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-11 17:57:30 +05:30
|
|
|
|
|