Exemple #1
0
 public StarHandler(
     string icao,
     StarCollection StarCollection,
     WaypointList wptList,
     WaypointListEditor editor,
     AirportManager airportList)
 {
     this.icao           = icao;
     this.wptList        = wptList;
     this.editor         = editor;
     this.airportList    = airportList;
     this.StarCollection = StarCollection;
 }
Exemple #2
0
 public StarAdder(
     string icao,
     StarCollection stars,
     WaypointList wptList,
     WaypointListEditor editor,
     AirportManager airportList,
     WptSearchOption option)
 {
     this.icao        = icao;
     this.stars       = stars;
     this.wptList     = wptList;
     this.editor      = editor;
     this.airportList = airportList;
     this.option      = option;
 }
Exemple #3
0
 public StarAdder(
     string icao,
     StarCollection stars,
     WaypointList wptList,
     WaypointListEditor editor,
     AirportManager airportList)
     : this(
         icao,
         stars,
         wptList,
         editor,
         airportList,
         new WptSearchOption())
 {
 }