public void Addmodule(moduleType newValue)
 {
     AppendDomElement("", "module", newValue);
 }
 public void InsertmoduleAt(moduleType newValue, int index)
 {
     InsertDomElementAt("", "module", index, newValue);
 }
 public void ReplacemoduleAt(moduleType newValue, int index)
 {
     ReplaceDomElementAt("", "module", index, newValue);
 }