zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/DomainEventHandlers/Ordering/OrderStartedEvent/SendEmailWhenOrderStartedDomainEventHandler.cs

14 lines
458 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
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;
}
}
}