public Student getStudent(Integer id) {
   return studentDAO.findStudentById(id);
 }
 public void updateStudent(Integer id) {
   Student student = studentDAO.findStudentById(id);
   student.setName("online tutorials point");
   studentDAO.updateStudent(student);
   System.out.println("Student Updated Success");
 }