// Code History:
 // 2010-12-12,2014-02-22 mws
 // ******************************************************************************
 /// <summary>
 /// Adds a concept property as child to the conceptSet wrapper
 /// </summary>
 /// <param name="conceptElementId">The id attribute value of the concept element</param>
 public void AddCSconcept(string conceptElementId)
 {
     var concept = new Concept {id = conceptElementId};
     AddNarPropertyToWrapper1(PropsWrapping1.ConceptSet, concept);
 }
 public ConceptStructProp()
 {
     CoreConcept = new Concept();
     ConceptId = new ConceptId();
     Type = new Type();
     Names = new List<Name>();
     Definitions = new List<Definition>();
     Notes = new List<Note>();
     RemoteInfos = new List<RemoteInfo>();
     HierarchyInfos = new List<HierarchyInfo>();
     SameAsses = new List<SameAs>();
     Broaders = new List<Broader>();
     Narrowers = new List<Narrower>();
     Relateds = new List<Related>();
 }