Example #1
0
        private void btnProcuraMatricula_Click(object sender, EventArgs e)
        {   //Verificar
            Aluno matricula = new Aluno();

            matricula.Matricula = int.Parse(txtMatricula.Text);

            AlunosController alunosController = new AlunosController();

            matricula = alunosController.BuscarMatriculaAluno(matricula.Matricula);

            txtNomeAtt.Text      = matricula.Nome;
            txtMatriculaAtt.Text = matricula.Matricula.ToString();

            //Verificar
        }