public static bool Entfernen(ref Artikeltyp tmp) { if (_dict.Remove(tmp.ArtikeltypID)) { ArtikeltypEntfernt?.Invoke(tmp, EventArgs.Empty); tmp = null; return(true); } return(false); }
private void Hinzufuegen(Artikeltyp tmp) { _dict.Add(tmp.ArtikeltypID, tmp); ArtikeltypHinzugefuegt?.Invoke(this, EventArgs.Empty); }