public async Task <IEnumerable <NewsArticle> > Search([FromQuery(Name = "title")] string title)
 {
     return(await _hackerNewsService.SearchAsync(title));
 }