コード例 #1
0
        private void CarregarComboPessoa(int id = 0)
        {
            ConexaoDAL cx     = new ConexaoDAL(DadosConexao.StringDeConexao);
            EmpresaBLL empBLL = new EmpresaBLL(cx);

            cbboxATLEmpResp.DataSource    = empBLL.LocalizarPessoa("ATLEMPFORM", id);
            cbboxATLEmpResp.DisplayMember = "nome";
            cbboxATLEmpResp.ValueMember   = "id_pessoa";
        }