public void AddMention(string berichtID, string mention) { Mention m = repo.ReadMention(mention); if (m == null) { m = new Mention() { Tekst = mention }; repo.CreateMention(m); } repo.CreateBerichtMention(berichtID, m); }