Files
CMS/src/CMSMicroservice.Application/ProductGallerysCQ/EventHandlers/CreateNewProductGallerysEventHandlers/CreateNewProductGallerysEventHandler.cs
2025-11-12 02:24:02 +03:30

23 lines
725 B
C#

using CMSMicroservice.Domain.Events;
using Microsoft.Extensions.Logging;
namespace CMSMicroservice.Application.ProductGallerysCQ.EventHandlers;
public class CreateNewProductGallerysEventHandler : INotificationHandler<CreateNewProductGallerysEvent>
{
private readonly ILogger<
CreateNewProductGallerysEventHandler> _logger;
public CreateNewProductGallerysEventHandler(ILogger<CreateNewProductGallerysEventHandler> logger)
{
_logger = logger;
}
public Task Handle(CreateNewProductGallerysEvent notification, CancellationToken cancellationToken)
{
_logger.LogInformation("Domain Event: {DomainEvent}", notification.GetType().Name);
return Task.CompletedTask;
}
}