public void ReplacemodulesAt(modulesType newValue, int index)
 {
     ReplaceDomElementAt("", "modules", index, newValue);
 }
 public void Addmodules(modulesType newValue)
 {
     AppendDomElement("", "modules", newValue);
 }
 public void InsertmodulesAt(modulesType newValue, int index)
 {
     InsertDomElementAt("", "modules", index, newValue);
 }