public async Task <List <BestStoriesModel> > getBestStories()
        {
            // Init the search text to empty
            ViewBag.newsSearchText = "";
            // Get all the best stories
            var bestStoriesIDs = await HackerNewsService.GetBestStoriesIDs(appSettings);

            var bestStories = await HackerNewsService.GetBestStories(bestStoriesIDs, appSettings);

            return(bestStories.OrderByDescending(i => i.time).Take(20).ToList());
        }