public async Task Compensate(Guid identificador)
        {
            await _historicoDao.Remover(identificador);

            await _coberturaDao.Remover(identificador);

            await _eventos.Remover(identificador);
        }
        public async Task Apagar(Guid eventoId)
        {
            await _historico.Remover(eventoId);

            await _eventos.Remover(eventoId);
        }