namespace Ordering.Domain.Events { using MediatR; /// /// Event used when the order stock items are confirmed /// public class OrderStatusChangedToStockConfirmedDomainEvent : IAsyncNotification { public int OrderId { get; } public OrderStatusChangedToStockConfirmedDomainEvent(int orderId) => OrderId = orderId; } }