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