public class BusStop {
  BusStop(PersonList waiting, BusRoute newBusRoute) { 
    this.waiting=waiting;
    this.newBusRoute=newBusRoute;
  }
  BusStop(PersonList waiting) { 
    this.waiting=waiting;
  }

  public PersonList waiting;
  public BusRoute newBusRoute;
}


