Esempio n. 1
0
 public NewsComment GetNewsCommentById(int commentID)
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetNewsCommentById(commentID);
 }
Esempio n. 2
0
 public DataTable GetAllViewDownloadComment()
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllViewDownloadComment();
 }
Esempio n. 3
0
 public DataTable GetAllViewNewsComment(int ID)
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllViewNewsComment(ID);
 }
Esempio n. 4
0
 public DataTable GetAllViewCompanyComment()
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllViewCompanyComment();
 }
Esempio n. 5
0
 public DataTable GetAllViewAnnounceComment()
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllViewAnnounceComment();
 }
Esempio n. 6
0
 public DataTable GetAllNewsGroupComment(int ID, int group)
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllNewsGroupComment(ID, group);
 }
Esempio n. 7
0
 public DataTable GetAllGroupCateNewsComment(int group)
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetAllGroupCateNewsComment(group);
 }
Esempio n. 8
0
 public DataTable GetNewsCommentByNewsID(int newsID)
 {
     NewsCommentDAO newsCommentDAO = new NewsCommentDAO();
     return newsCommentDAO.GetNewsCommentByNewsID(newsID);
 }