BLL.CommentService.selectComment C# (CSharp) Method

selectComment() public method

public selectComment ( System.Guid ActID, int num ) : List
ActID System.Guid
num int
return List
        public List<Comment> selectComment(Guid ActID, int num)
        {
            return commentHandler.selectCommentByActID_num(ActID, num);
        }