예제 #1
0
 public void AddDestinationPassengersRate(DestinationDemand passengers)
 {
     Statics.AddPassengerDemand(passengers);
 }
 public void AddPassengerDemand(DestinationDemand demand)
 {
     lock (_passengerDemand) _passengerDemand.Add(demand);
 }
예제 #3
0
 public void AddDestinationCargoRate(DestinationDemand cargo)
 {
     Statics.AddCargoDemand(cargo);
 }
 public void AddCargoDemand(DestinationDemand demand)
 {
     lock (_cargoDemand) _cargoDemand.Add(demand);
 }