public Task Handle(UserCreatedNotification notification, CancellationToken cancellationToken)
 {
     return(Task.FromResult(_rabbitMQService.Enqueue($"UserCreated: {notification.UserId}")));
 }