Example #1
0
 public void RemoveDmdSection(MetsDmdSection dmdSection)
 {
     if (dmdList.Contains(dmdSection))
     {
         dmdList.Remove(dmdSection);
     }
 }
Example #2
0
 public void AddDmdSection(MetsDmdSection dmdSection)
 {
     if (!dmdList.Contains(dmdSection))
     {
         dmdList.Add(dmdSection);
     }
 }
Example #3
0
 public void RemoveDmdSection(MetsDmdSection dmdSection) { if (dmdList.Contains(dmdSection)) dmdList.Remove(dmdSection); }
Example #4
0
 public void AddDmdSection(MetsDmdSection dmdSection) { if (!dmdList.Contains(dmdSection)) dmdList.Add(dmdSection); }