コード例 #1
0
        public ActionResult Student(int id)
        {
            var course = _studentHandler.GetStudentById(id);

            return(View(course));
        }
コード例 #2
0
 public Response <StudentModel> GetStudentById(int studentId)
 {
     return(_studentHandler.GetStudentById(studentId));
 }