コード例 #1
0
ファイル: NewsGroupBSO.cs プロジェクト: vietnnit/dataenergy
        public DataTable GetNewsGroupByListNewsID(string lang, string strCate, int num, string aproval, string isHome)
        {
            if (strCate != "")
            {
                strCate = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
            }
            NewsGroupDAO newsGroupDAO = new NewsGroupDAO();

            return(newsGroupDAO.GetNewsGroupByListNewsID(lang, strCate, num, aproval, isHome));
        }