16 lines
405 B
C#
16 lines
405 B
C#
|
namespace Ordering.Domain.Events
|
|||
|
{
|
|||
|
using MediatR;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Event used when the order stock items are confirmed
|
|||
|
/// </summary>
|
|||
|
public class OrderStatusChangedToStockConfirmedDomainEvent
|
|||
|
: IAsyncNotification
|
|||
|
{
|
|||
|
public int OrderId { get; }
|
|||
|
|
|||
|
public OrderStatusChangedToStockConfirmedDomainEvent(int orderId)
|
|||
|
=> OrderId = orderId;
|
|||
|
}
|
|||
|
}
|