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