private void btn_consultarProfessor_Click(object sender, EventArgs e) { { if (txt_nomeProfessor.Text.Trim().Length == 0) { dgv_pesquisaProfessor.DataSource = GerenciadorBanco.getProfessor(); } else { dgv_pesquisaProfessor.DataSource = GerenciadorBanco.getProfessorPorNome(txt_nomeProfessor.Text.Trim()); } } }