using System.Threading; using System.Threading.Tasks; using CleanArchitecture.Domain.Events.User; using MediatR; namespace CleanArchitecture.Domain.EventHandler; public sealed class UserEventHandler : INotificationHandler, INotificationHandler, INotificationHandler, INotificationHandler { public Task Handle(PasswordChangedEvent notification, CancellationToken cancellationToken) { return Task.CompletedTask; } public Task Handle(UserCreatedEvent notification, CancellationToken cancellationToken) { return Task.CompletedTask; } public Task Handle(UserDeletedEvent notification, CancellationToken cancellationToken) { return Task.CompletedTask; } public Task Handle(UserUpdatedEvent notification, CancellationToken cancellationToken) { return Task.CompletedTask; } }