17 using erminas.SmartAPI.Exceptions;
18 using erminas.SmartAPI.Utils;
20 namespace erminas.SmartAPI.CMS.ServerManagement
43 BusinessProcessManager,
49 public static class ModuleTypeUtils
51 public static ModuleType ToModuleType(
this string value)
59 case "templateeditor":
87 public static string ToRQLString(
this ModuleType type)
96 return "templateeditor";
102 return "servermanager";
112 return "collaboration";
129 internal class Module : RedDotObject, IModule
131 internal Module(
ISession session, XmlElement xmlElement) : base(session, xmlElement)
138 private void LoadXml(XmlElement xmlElement)
140 Type = xmlElement.GetAttributeValue(
"id").ToModuleType();