Exemplo n.º 1
0
        private void FrmCadastroProjeto_Load(object sender, EventArgs e)
        {
            projetoBLL           = new SP3BLL.ProjetoBLL();
            bsProjeto.DataSource = projetoBLL.GetList();

            projetoPessoaBLL = new SP3BLL.ProjetoPessoaBLL(this.bsProjetoPessoa, bsProjeto.Current);
        }
Exemplo n.º 2
0
        private void CarregarInformacoes(int position = -1)
        {
            if (position >= 0)
            {
                bsProjeto.Position = position;
            }

            projetoPessoaBLL = new SP3BLL.ProjetoPessoaBLL(bsProjetoPessoa, bsProjeto.Current);
        }