public async Task <IDataResult <Comment> > GetByIdAsync(int id)
 {
     return(new SuccessDataResult <Comment>(await _commentDal.GetByIdAsync(id)));
 }