Ejemplo n.º 1
0
        // scrape an individual show and store in DB
        public Show ScrapeAndStoreShowById(int id)
        {
            Show Show = ScraperServices.ScrapeShowById(id); // scraper

            if (Show != null)
            {
                RepositoryServices.StoreShow(Show); // storage
            }
            return(Show);
        }