public Task Handle(EventoExcluidoEvent message, CancellationToken cancellationToken)
 {
     // TODO: Disparar alguma ação
     return(Task.CompletedTask);
 }
Exemplo n.º 2
0
 public void Handle(EventoExcluidoEvent message)
 {
     // Log
 }
Exemplo n.º 3
0
 public void Handle(EventoExcluidoEvent message)
 {
     // enviar email ou log ou salvar registro no banco
     Console.ForegroundColor = ConsoleColor.Green;
     Console.WriteLine("Excluido com sucesso");
 }
Exemplo n.º 4
0
 public void Handle(EventoExcluidoEvent message)
 {
     //Enviar email
 }