示例#1
0
 public DataTable GetNewsGroupAll(string lang, int group)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupAll(lang, group);
 }
示例#2
0
 public DataTable GetNewsGroupAll(string lang, int group, string strCate)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupAll(lang, group, restr);
 }
示例#3
0
 public DataTable NewsGroupSearch(string keyword, int cId, string lang)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.NewsGroupSearch(keyword, cId, lang);
 }
示例#4
0
 public DataTable NewsGroupMainHomeModule(string lang)
 {
     NewsGroupDAO newsGroupDao = new NewsGroupDAO();
     return newsGroupDao.NewsGroupMainHomeModule(lang);
 }
示例#5
0
 public DataTable NewsGroupFollow(int Id, int cId, int n)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.NewsGroupFollow(Id, cId, n);
 }
示例#6
0
 public DataTable NewsGroupFollow(int Id, int cId, int n, string approval)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.NewsGroupFollow(Id, cId, n, approval);
 }
示例#7
0
 public DataTable GetNewsGroupViewHome(string lang, int n, string approval, int group)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupViewHome(lang, n, approval, group);
 }
示例#8
0
 public NewsGroup GetNewsGroupById(int nId)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupById(nId);
 }
示例#9
0
 public DataTable GetNewsGroupViewHome(string lang)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupViewHome(lang);
 }
示例#10
0
 public DataTable GetNewsGroupViewHome(string lang, int n, int cID, int group)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupViewHome(lang, n, cID, group);
 }
示例#11
0
 public DataTable GetNewsGroupViewAll(string lang, int n, int group, string approval)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupViewAll(lang, n, group, approval);
 }
示例#12
0
 public DataTable GetNewsGroupHot(string lang, int n, int group)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupHot(lang, n, group);
 }
示例#13
0
 public DataTable GetNewsGroupHot(string lang)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupHot(lang);
 }
示例#14
0
 public DataTable GetNewsGroupByCateAll(string strCate, int group)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupByCateAll(restr, group);
 }
示例#15
0
 public DataTable GetNewsGroupViewHome(string lang, string strCate, int n, int group)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupViewHome(lang, restr, n, group);
 }
示例#16
0
 public DataTable GetNewsGroupByCateHomeAll(int n, string strCate, string approval, int group)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupByCateHomeAll(n, restr, approval, group);
 }
示例#17
0
 public DataTable GetNewsGroupByCateHomeList(string strCate, int group, string aproval)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupByCateHomeList(restr, group, aproval);
 }