예제 #1
0
        public List <CommentVO> GetListOfSubmissionComments(int subID)
        {
            CommentDAO       dao         = new CommentDAO();
            List <CommentVO> commentList = dao.GetAllCommentsInASubmission(subID);

            return(commentList);
        }