Example #1
0
        public static CT_PaperSource Parse(XmlNode node, XmlNamespaceManager namespaceManager)
        {
            if (node == null)
            {
                return(null);
            }
            CT_PaperSource ctObj = new CT_PaperSource();

            ctObj.first = XmlHelper.ReadString(node.Attributes["w:first"]);
            ctObj.other = XmlHelper.ReadString(node.Attributes["w:other"]);
            return(ctObj);
        }
Example #2
0
 public static CT_PaperSource Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_PaperSource ctObj = new CT_PaperSource();
     ctObj.first = XmlHelper.ReadString(node.Attributes["w:first"]);
     ctObj.other = XmlHelper.ReadString(node.Attributes["w:other"]);
     return ctObj;
 }