zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/DomainEventHandlers/Ordering/OrderStartedEvent/SendEmailWhenOrderStartedDomainEventHandler.cs
2023-12-05 17:22:48 +08:00

14 lines
458 B
C#

using MediatR;
using ZeroFramework.DeviceCenter.Domain.Events.Ordering;
namespace ZeroFramework.DeviceCenter.Application.DomainEventHandlers.Ordering.OrderStartedEvent
{
public class SendEmailWhenOrderStartedDomainEventHandler : INotificationHandler<OrderStartedDomainEvent>
{
public Task Handle(OrderStartedDomainEvent notification, CancellationToken cancellationToken)
{
return Task.CompletedTask;
}
}
}