public ActionResult Student(int id) { var course = _studentHandler.GetStudentById(id); return(View(course)); }
public Response <StudentModel> GetStudentById(int studentId) { return(_studentHandler.GetStudentById(studentId)); }