public void RemoveLink(RoleBasedLink Reference)
        {
            this.Links.Remove(Reference);
            Reference.AssociatedIdea.AssociatingLinks.Remove(Reference);

            this.NotifyPropertyChange("DescriptiveCaption");
        }
        public void AddLink(RoleBasedLink Reference)
        {
            this.Links.Add(Reference);

            this.NotifyPropertyChange("DescriptiveCaption");
        }