Example #1
0
        public XmlDocument GetNoticeList(int now_page, string title)
        {
            XmlDocument doc = new XmlDocument();

            CInvestment investment = new CInvestment();

            doc.InnerXml = investment.GetNoticeList(now_page, title);

            return(doc);
        }
Example #2
0
        public XmlDocument GetIrList(int now_page, string title, string lang_cd)
        {
            XmlDocument doc = new XmlDocument();

            CInvestment investment = new CInvestment();

            doc.InnerXml = investment.GetIrList(now_page, title, lang_cd);

            return(doc);
        }