public static AHPIndexHierarchy ReadIndexHierarchyXml() { AHPIndexHierarchy TunnelHealIndex = new AHPIndexHierarchy(); Serialization<AHPIndexHierarchy> Xml2AHPIndex = new Serialization<AHPIndexHierarchy>(); TunnelHealIndex = Xml2AHPIndex.XMLDeserialization(_hierarchyFilePath); SetAhpParent(TunnelHealIndex); return TunnelHealIndex; }
public static JudgementMatrixsGroup ReadMatriXml() { JudgementMatrixsGroup judgementMatrixInfos = new JudgementMatrixsGroup(); Serialization<JudgementMatrixsGroup> xml2Matrix = new Serialization<JudgementMatrixsGroup>(); judgementMatrixInfos = xml2Matrix.XMLDeserialization(_matrixFilePath); return judgementMatrixInfos; }