/**
  * Method returns the most often attended nurse
  *
  * @return list of nurses attended by the patient in order from the most often attended
  */
 public List <IModel> getTheMostOftenAttendedNurse()
 {
     return(repo.getTheMostAttendedNurse());
 }