public async Task <IDataResult <List <Comment> > > GetCommentList(CommentForGetListDto dto) { return(new SuccessDataResult <List <Comment> >(await _commentDal.GetListAsync(c => c.ArticleID == dto.ArticleId))); }