Exemplo n.º 1
0
 public ProductComment GetProductCommentById(int commentID)
 {
     ProductCommentDAO productCommentDAO = new ProductCommentDAO();
     return productCommentDAO.GetProductCommentById(commentID);
 }
Exemplo n.º 2
0
 public DataTable GetProductCommentByProductID(int productID)
 {
     ProductCommentDAO productCommentDAO = new ProductCommentDAO();
     return productCommentDAO.GetProductCommentByProductID(productID);
 }
Exemplo n.º 3
0
 public DataTable GetAllViewProductComment()
 {
     ProductCommentDAO productCommentDAO = new ProductCommentDAO();
     return productCommentDAO.GetAllViewProductComment();
 }