コード例 #1
0
 public async Task <IDataResult <List <Comment> > > GetAllAsync()
 {
     return(new SuccessDataResult <List <Comment> >(await _commentDal.GetAllAsync()));
 }