public void Add(AirportList airports) { foreach (var airport in airports) { this.Add(airport); } }
public void Add(AirportList airports) { this.Dictionary.Add(airports); this.List.Clear(); this.List.AddRange(this.Dictionary.Values.ToList()); //OnPropertyChanged("List"); }