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

            return(newsGroupDAO.GetNewsGroupPagingParent(lang, group, strCate, _paging));
        }
Example #2
0
        public DataTable GetNewsGroupPagingParent(string lang, int group, PagingInfo _paging)
        {
            NewsGroupDAO newsGroupDAO = new NewsGroupDAO();

            return(newsGroupDAO.GetNewsGroupPagingParent(lang, group, _paging));
        }