@Override
 public void insert(Student obj) {
   obj.setID(MaxStudentID() + 1);
   obj.setDb(db);
   students.add(obj);
 }