public void PesquisaAluno(string nome) { alunoApp = new ServicoDeAluno(); listAll = alunoApp.Get(x => x.Nome.ToUpper().Contains(nome.ToUpper())).OrderBy(x => x.Nome).ToList(); dgvAlunos.DataSource = listAll; alunoApp.Dispose(); }
public void CarregaAlunos() { alunoApp = new ServicoDeAluno(); listAll = alunoApp.GetAll().OrderBy(x => x.Nome).ToList(); dgvAlunos.DataSource = listAll; alunoApp.Dispose(); }