public ActionResult CommentList(int productId)
        {
            List <CommentDto> currentComment = ProductHandler.GetAllComment(productId);

            return(PartialView(currentComment));
        }