private void frmRelatorioClienteProduto_Load(object sender, EventArgs e)
        {
            BLLClienteProduto bllclienteProduto = new BLLClienteProduto(conexao);

            crvClienteProduto.ReportSource = null;

            //crClienteProduto crClienteProduto = new crClienteProduto();

            //crClienteProduto.Database.Tables["dsClienteProduto"].SetDataSource(bllclienteProduto.relatorioClienteProdutoAnalitico(nome,dtInicio,dtTermino,cidade,estado,produto,referencia));

            //crvClienteProduto.ReportSource = crClienteProduto;
        }
        private void frmConsultaProduto_Load(object sender, EventArgs e)
        {
            BLLClienteProduto bll = new BLLClienteProduto(conexao);

            try
            {
                dgProduto.DataSource = bll.Localizar(codCliente);
            }
            catch (Exception)
            {
                throw new Exception();
            }
        }
 private void button1_Click(object sender, EventArgs e)
 {
     if (rbCodigo.Checked)
     {
         if (!String.IsNullOrEmpty(txtPesquisa.Text))
         {
             BLLClienteProduto bll = new BLLClienteProduto(conexao);
             try
             {
                 dgProduto.DataSource = bll.LocalizarClienteProdutoCodProduto(this.codCliente, txtPesquisa.Text);
             }
             catch (Exception)
             {
             }
         }
     }
     if (rbNome.Checked)
     {
         BLLClienteProduto bll = new BLLClienteProduto(conexao);
         try
         {
             dgProduto.DataSource = bll.LocalizarClienteProdutoNome(this.codCliente, txtPesquisa.Text);
         }
         catch (Exception)
         {
             throw new Exception();
         }
     }
     if (rbReferencia.Checked)
     {
         BLLClienteProduto bll = new BLLClienteProduto(conexao);
         try
         {
             dgProduto.DataSource = bll.LocalizarClienteProdutoReferencia(this.codCliente, txtPesquisa.Text);
         }
         catch (Exception)
         {
             throw new Exception();
         }
     }
 }