コード例 #1
0
ファイル: NewsItemManager.cs プロジェクト: yalhami/eXpresso
        public static XmlDocument GetByCategoryIDasXML(int catID, int count)
        {
            NewsItemDataMapper objCaller = new NewsItemDataMapper();

            return objCaller.GetByCategoryIDasXML(catID, count);
        }
コード例 #2
0
ファイル: NewsItemManager.cs プロジェクト: yalhami/eXpresso
        public static XmlDocument GetByCategoryIDasXML(int catID, int from, int to, ref int TotalRows, string keyword, string date, int isFeatured, bool SelectRandomly)
        {
            NewsItemDataMapper objCaller = new NewsItemDataMapper();

            return objCaller.GetByCategoryIDasXML(catID, from, to, ref TotalRows, keyword, date, isFeatured, SelectRandomly);
        }
コード例 #3
0
ファイル: NewsItemManager.cs プロジェクト: yalhami/eXpresso
        public static XmlDocument GetByCategoryAndDateYear(int catId, string year)
        {
            NewsItemDataMapper objCaller = new NewsItemDataMapper();

            return objCaller.GetByCategoryIDasXML(catId, 100000);

        }