예제 #1
0
        public DataTable GetNewsGroupAll(string lang, int group, string strCate)
        {
            if (strCate != "")
            {
                strCate = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
            }
            NewsGroupDAO newsGroupDAO = new NewsGroupDAO();

            return(newsGroupDAO.GetNewsGroupAll(lang, group, strCate));
        }
예제 #2
0
        public DataTable GetNewsGroupAll(string lang, int group)
        {
            NewsGroupDAO newsGroupDAO = new NewsGroupDAO();

            return(newsGroupDAO.GetNewsGroupAll(lang, group));
        }