public NewsComment GetNewsCommentById(int commentID) { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetNewsCommentById(commentID); }
public DataTable GetAllViewDownloadComment() { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllViewDownloadComment(); }
public DataTable GetAllViewNewsComment(int ID) { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllViewNewsComment(ID); }
public DataTable GetAllViewCompanyComment() { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllViewCompanyComment(); }
public DataTable GetAllViewAnnounceComment() { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllViewAnnounceComment(); }
public DataTable GetAllNewsGroupComment(int ID, int group) { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllNewsGroupComment(ID, group); }
public DataTable GetAllGroupCateNewsComment(int group) { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetAllGroupCateNewsComment(group); }
public DataTable GetNewsCommentByNewsID(int newsID) { NewsCommentDAO newsCommentDAO = new NewsCommentDAO(); return newsCommentDAO.GetNewsCommentByNewsID(newsID); }