Example #1
0
        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);
        }