/**
  * Method returns the most often attended doctor
  *
  * @return full name of the most often attended doctor
  */
 public string getTheMostOftenAttendedDoctor()
 {
     return(repo.getTheMostAttendedDoctor().getFullStaffName());
 }