public List <CommentVO> GetListOfCommentsByUserID(int size, int userID) { CommentDAO dao = new CommentDAO(); List <CommentVO> commentList = dao.GetAllUsersComments(userID); TruncateList(commentList, size); return(commentList); }