16 lines
429 B
C#
16 lines
429 B
C#
namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.DomainEventHandlers;
|
|
|
|
public class SendEmailToCustomerWhenOrderStartedDomainEventHandler
|
|
//: IAsyncNotificationHandler<OrderStartedDomainEvent>
|
|
{
|
|
public SendEmailToCustomerWhenOrderStartedDomainEventHandler()
|
|
{
|
|
|
|
}
|
|
|
|
//public async Task Handle(OrderStartedDomainEvent orderNotification)
|
|
//{
|
|
// //TBD - Send email logic
|
|
//}
|
|
}
|