Exemplo n.º 1
0
        private void btLocalizar_Click(object sender, EventArgs e)
        {
            DALConexao cx  = new DALConexao(DadosDaConexao.StringDeConexao);
            BLLPedido  bll = new BLLPedido(cx);

            dgvDados.DataSource = bll.Localizar(txtValor.Text);
        }
Exemplo n.º 2
0
        private void frmCadastroSaidaPedido_Load(object sender, EventArgs e)
        {
            this.alteraBotoes(1);
            DALConexao cx  = new DALConexao(DadosDaConexao.StringDeConexao);
            BLLPedido  bll = new BLLPedido(cx);

            cbPedido.DataSource    = bll.Localizar("");
            cbPedido.DisplayMember = "ID_Pedido";
            cbPedido.ValueMember   = "ID_Pedido";
            cbPedido.ResetText();
        }