using PostFundManagement.Domain.Events.Communications; namespace PostFundManagement.Application.Communications.Events; public class SyncUserEventHandler(ILogger logger) : INotificationHandler { public ValueTask Handle(SyncUserEvent notification, CancellationToken cancellationToken) { logger.LogInformation("Integration Sync executed. Correlation ID: {CorrelationId}", notification.CorrelationId); return ValueTask.CompletedTask; } }