public ProductComment GetProductCommentById(int commentID) { ProductCommentDAO productCommentDAO = new ProductCommentDAO(); return productCommentDAO.GetProductCommentById(commentID); }
public DataTable GetProductCommentByProductID(int productID) { ProductCommentDAO productCommentDAO = new ProductCommentDAO(); return productCommentDAO.GetProductCommentByProductID(productID); }
public DataTable GetAllViewProductComment() { ProductCommentDAO productCommentDAO = new ProductCommentDAO(); return productCommentDAO.GetAllViewProductComment(); }