public DataTable GetNewsGroupPaging(string lang, int group, int CateID, string strCate, int isApproved, int status, int isHot, int isHome, int isDelete, PagingInfo _paging) { if (strCate != "") { strCate = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','"); } NewsGroupDAO newsGroupDAO = new NewsGroupDAO(); return(newsGroupDAO.GetNewsGroupPaging(lang, group, CateID, strCate, isApproved, status, isHot, isHome, isDelete, _paging)); }
public DataTable GetNewsGroupPaging(string lang, int group, string strCate, PagingInfo _paging) { if (strCate != "") { strCate = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','"); } NewsGroupDAO newsGroupDAO = new NewsGroupDAO(); return(newsGroupDAO.GetNewsGroupPaging(lang, group, strCate, _paging)); }
public DataTable GetNewsGroupPaging(string lang, int group, int cateID, PagingInfo _paging) { NewsGroupDAO newsGroupDAO = new NewsGroupDAO(); return(newsGroupDAO.GetNewsGroupPaging(lang, group, cateID, _paging)); }