/**
  * Method returns all the upcoming appointments
  *
  * @return list of upcoming appointments
  */
 public List <IModel> getAllUpcomingAppointments()
 {
     return(repo.getAllUpcomingAppointments());
 }