Example #1
0
 //reallocate the pax demand from one airport to another
 public static void ReallocateAirport(Airport airportOld, Airport airportNew)
 {
     if (airportNew.getMajorDestinations().Count == 0)
     {
         foreach (DestinationDemand paxDemand in airportOld.getDestinationsPassengers())
             airportNew.addDestinationPassengersRate(paxDemand);
     }
 }