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