public async Task <Models.Cidadao> ObterPorId(Guid id)
        {
            var c = await _cidadaoRepository.ObterPorId(id);

            return(c);
        }