Exemplo n.º 1
0
        public ActionResult StudentByID(int?StudentID = 1)
        {
            StudentDAO sd       = new StudentDAO();
            var        _student = sd.GetStudentByID(StudentID);

            ViewBag._student = _student;
            return(View());
        }