Ejemplo n.º 1
0
        private void CarregarDadosTermoFundos()
        {
            var lRequest = new Gradual.Intranet.Contratos.Mensagens.ConsultarEntidadeCadastroRequest <FundosInfo>();

            lRequest.EntidadeCadastro = new FundosInfo();

            lRequest.EntidadeCadastro.CodigoClienteFundo = this.GetCodBovespa;

            var lResponse = this.ServicoPersistenciaCadastro.ConsultarEntidadeCadastro <FundosInfo>(lRequest);

            this.rptTermoFundoAderido.DataSource = lResponse.Resultado;
            this.rptTermoFundoAderido.DataBind();


            var lResponseFundos = ClienteDbLib.ListarFundos();

            this.rptFundos.DataSource = lResponseFundos;
            this.rptFundos.DataBind();
        }