public void verwijderVloot(Vloot vloot) { if (Vloten.ContainsKey(vloot.Naam)) { Vloten.Remove(vloot.Naam); } }
public void voegVlootToe(Vloot vloot) { if (!Vloten.ContainsKey(vloot.Naam)) { Vloten.Add(vloot.Naam, vloot); } }