public void VerwijderSchip(Schip schip) { if (schepenLijst.ContainsKey(schip.Naam)) { schepenLijst.Remove(schip.Naam); schip.Vloot = null; } }
public void VoegSchipToe(Schip schip) { if (!schepenLijst.ContainsKey(schip.Naam)) { schepenLijst.Add(schip.Naam, schip); schip.Vloot = this; } }
public void WijzigSchipVanVloot(string schipnaam, string vlootNaam) { Schip schip = ZoekSchip(schipnaam); if (schip != null) { vlotenLijst[schip.Vloot.VlootNaam].VerwijderSchip(schip); vlotenLijst[vlootNaam].VoegSchipToe(schip); } }