Ejemplo n.º 1
0
        public RouteGroup(Route Folded, TrackInUseCollection tracks)
        {
            this.Folded = Folded;
            Expanded    = new Route(Folded);

            foreach (var i in tracks.AllEntries)
            {
                Expanded.Nodes.InsertRoute(i.Route, i.RouteName);
            }
        }
Ejemplo n.º 2
0
 public TrackHandler(
     WaypointList wptList,
     WaypointListEditor editor,
     AirportManager airportList,
     TrackInUseCollection tracksInUse)
 {
     this.wptList     = wptList;
     this.editor      = editor;
     this.airportList = airportList;
     this.tracksInUse = tracksInUse;
 }