예제 #1
0
        //GET : /Teacher/DeleteConfirm/{id}
        public ActionResult DeleteConfirm(int id)
        {
            TeacherDataController controller = new TeacherDataController();
            // Get teacher information
            Teacher teacher = controller.GetTeacherInformation(id);

            // Get course information associated to the teacher
            teacher.Classes = controller.GetTeacherClasses(id);
            return(View(teacher));
        }