public static async Task <List <News> > GetSportNews()
 {
     return(await CrawlerTheNewYorkTimes.StartCrawlerAsync("https://www.nytimes.com/section/sports", "sport"));
 }
 public static async Task <List <News> > GetBusinessNews()
 {
     return(await CrawlerTheNewYorkTimes.StartCrawlerAsync("https://www.nytimes.com/section/business", "business"));
 }
 public static async Task <List <News> > GetHealthNews()
 {
     return(await CrawlerTheNewYorkTimes.StartCrawlerAsync("https://www.nytimes.com/section/health", "health"));
 }
Beispiel #4
0
 public static async Task <List <News> > GetTechnologyNews()
 {
     return(await CrawlerTheNewYorkTimes.StartCrawlerAsync("https://www.nytimes.com/section/technology", "technology"));
 }