Beispiel #1
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);
 }
Beispiel #2
0
 public DataTable GetNewsGroupAll(string lang, int group)
 {
     NewsGroupDAO newsGroupDAO = new NewsGroupDAO();
     return newsGroupDAO.GetNewsGroupAll(lang, group);
 }