Ejemplo n.º 1
0
 public DataTable GetPageCommentByPageID(int pageID)
 {
     PageCommentDAO pageCommentDAO = new PageCommentDAO();
     return pageCommentDAO.GetPageCommentByPageID(pageID);
 }
Ejemplo n.º 2
0
 public DataTable GetAllViewPageComment()
 {
     PageCommentDAO pageCommentDAO = new PageCommentDAO();
     return pageCommentDAO.GetAllViewPageComment();
 }
Ejemplo n.º 3
0
 public PageComment GetPageCommentById(int commentID)
 {
     PageCommentDAO pageCommentDAO = new PageCommentDAO();
     return pageCommentDAO.GetPageCommentById(commentID);
 }
Ejemplo n.º 4
0
 public DataTable GetAllGroupCateViewPageComment(string group)
 {
     PageCommentDAO pageCommentDAO = new PageCommentDAO();
     return pageCommentDAO.GetAllGroupCateViewPageComment(group);
 }