@Override
 public void loadWorkspaceData(Element workspaceData) {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.loadWorkspaceData(workspaceData);
 }
 public void loadLogicalArchitectureData(Element e) {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.setParseData(DomainElement.LOGICAL);
   pd.loadWorkspaceData(e);
 }
 @Override
 public Element getWorkspaceData() {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   return pd.getWorkspaceData();
 }
 public Element getLogicalArchitectureData() {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.setParseData(DomainElement.LOGICAL);
   return pd.getWorkspaceData();
 }