/**
  * Get Student list
  *
  * @param String
  * @return object
  */
 @Override
 public List<mmStudent> listStudents() {
   try {
     return mmStudentDAO.listStudents();
   } catch (Exception e) {
     System.out.println("Exception: " + e.getMessage());
     return null;
   }
 }