using MediatR; namespace Microsoft.eShopWeb.Events; public class OrderPlaced : INotification { public int OrderId { get; } public OrderPlaced(int orderId) { OrderId = orderId; } }