public Task Handle(RemovedClienteEvent notification, CancellationToken cancellationToken) { return(Response()); }
public async Task Handle(RemovedClienteEvent notification, CancellationToken cancellationToken) { await _clienteMongoRepository.RemoveAsync(notification.Cliente.Id); await ApplyEvent(notification); }