You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MovieUpdatedEvent(Data.Movie movie) : INotification
{
public Data.Movie Movie { get; } = movie;
}
public class MovieUpdatedEventHandler(ILogger<MovieUpdatedEventHandler> logger, IPublishEndpoint publishEndpoint) : INotificationHandler<MovieUpdatedEvent>
{
public async Task Handle(MovieUpdatedEvent notification, CancellationToken cancellationToken)