Beispiel #1
0
 public Task <List <Comment> > GetAllWithSubCommentsAsync(int blogId, int?parentId)
 {
     return(_commentDal.GetAllWithSubCommentsAsync(blogId, parentId));
 }
Beispiel #2
0
 public async Task <List <Comment> > GetAllWithSubCommentsAsync(int topicId, int?parentId)
 {
     return(await _commentDal.GetAllWithSubCommentsAsync(topicId, parentId));
 }