Esempio n. 1
0
        public static TGetKepServListRspDetail LoadFromXMLNode(XmlNode node)
        {
            if (node.Name != "Row")
            {
                return(null);
            }

            TGetKepServListRspDetail rlt = new TGetKepServListRspDetail();

            rlt = IRAPXMLUtils.LoadValueFromXMLNode(node, rlt) as TGetKepServListRspDetail;
            return(rlt);
        }
Esempio n. 2
0
        public static TGetKepServListRspBody LoadFromXMLNode(XmlNode node)
        {
            TGetKepServListRspBody rlt = new TGetKepServListRspBody();

            rlt = IRAPXMLUtils.LoadValueFromXMLNode(GetEX(node), rlt) as TGetKepServListRspBody;
            XmlNode paramxml = GetRspBodyNode(node);

            if (paramxml.FirstChild != null && paramxml.FirstChild.Name == "Row")
            {
                foreach (XmlNode child in paramxml.ChildNodes)
                {
                    rlt.items.Add(TGetKepServListRspDetail.LoadFromXMLNode(child));
                }
            }
            return(rlt);
        }