Exemplo n.º 1
0
        public ActionResult Create()
        {
            Professor professor = new Professor();

            professor.ListaPessoas = _professorRepositorio.RetornaPessoas();
            professor.Ativo        = 1;
            return(View(professor));
        }