public async Task <IEnumerable <NewsArticle> > Get([FromQuery(Name = "count")] int count = 20, [FromQuery(Name = "lowestArticleId")] int lowestArticleId = int.MaxValue)
 {
     return(await _hackerNewsService.GetLatestArticlesAsync(count, lowestArticleId));
 }