Refactored Communications and Evidence endpoints
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using PostFundManagement.Domain.Events.Communications;
|
||||
|
||||
namespace PostFundManagement.Application.Communications.Events;
|
||||
|
||||
public class SyncUserEventHandler(ILogger<SyncUserEvent> logger) : INotificationHandler<SyncUserEvent>
|
||||
{
|
||||
public ValueTask Handle(SyncUserEvent notification, CancellationToken cancellationToken)
|
||||
{
|
||||
logger.LogInformation("Integration Sync executed. Correlation ID: {CorrelationId}", notification.CorrelationId);
|
||||
|
||||
return ValueTask.CompletedTask;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user