private void BtnConsultar_Click(object sender, EventArgs e)
 {
     try{
         ContratoAluguelNegocios contratoAluguelNegocios = new ContratoAluguelNegocios();
         if (rbPessoa.Checked)
         {
             if (txtPessoaID.Text != "" && txtPessoaID.Text != "0")
             {
                 dgvResultado.DataSource = contratoAluguelNegocios.ConsultaPorPessoa(int.Parse(txtPessoaID.Text));
             }
         }
         else if (rbEstoqueLocalidade.Checked)
         {
             if (txtEstoqueLocalidadeID.Text != "" && txtEstoqueLocalidadeID.Text != "0")
             {
                 dgvResultado.DataSource = contratoAluguelNegocios.ConsultaPorEstoqueLocalidade(int.Parse(txtEstoqueLocalidadeID.Text));
             }
         }
         else if (rbPasto.Checked)
         {
             if (txtPastoID.Text != "" && txtPastoID.Text != "0")
             {
                 dgvResultado.DataSource = contratoAluguelNegocios.ConsultaPorPasto(int.Parse(txtPastoID.Text));
             }
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("Houve algum erro, por favor, tente novamente.", "Por favor, tente novamente.");
     }
 }
Esempio n. 2
0
        private void RbContratoAluguel_CheckedChanged(object sender, EventArgs e)
        {
            ContratoAluguelNegocios contratoAluguelNegocios = new ContratoAluguelNegocios();

            dgvContratoAluguel.DataSource = contratoAluguelNegocios.ConsultaPorPessoa(pessoa.PessoaID);
            dgvContratoAluguel.Visible    = true;
            dgvCompras.Visible            = false;
            dgvVendas.Visible             = false;
        }