public DataTable ExibirDados1() { try { DataTable DataT = new DataTable(); dal = new PesquisarLocacao1(); DataT = dal.ExibirDados1(); return(DataT); } catch (Exception erro) { throw erro; } }
private void BtnPesquisar_Click(object sender, EventArgs e) { PesquisarLocacao1 gen = new PesquisarLocacao1(); try { exibirLocacao.DataSource = gen.ExibirDados1(); } catch (Exception erro) { MessageBox.Show("Erro ao exibir dados" + erro); } DtEntLocacao.Enabled = true; IdClienteLocacao.Enabled = true; DtLocLocacao.Enabled = true; IdFilmeLocacao.Enabled = true; nLocLocacao.Enabled = true; }