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