示例#1
0
        // GET: Prova
        public ActionResult Cadastro()
        {
            var alunos = _alunoBusiness.ConsultarAlunos();

            var vieModel = new ProvaViewsModel()
            {
                AlunoList = new Config.Config().retornaSelectListItem(alunos)
            };

            return(View(vieModel));
        }