public List <PessoaLst> ObterListaInteressadoEmpreendimento(int empreendimento, int requerimento)
        {
            try
            {
                return(_da.ObterListaInteressadoEmpreendimento(empreendimento, requerimento));
            }
            catch (Exception exc)
            {
                Validacao.AddErro(exc);
            }

            return(null);
        }