Пример #1
0
 public async Task <IList <CommentModel> > GetCommentsAsync(string articleId, int startCount, int count)
 {
     if (articleId == null)
     {
         throw new ArgumentNullException();
     }
     return(await _commentDao.GetCommentsAsync(articleId, startCount, count));
 }