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