Beispiel #1
0
        // scrape a cast memeber by the show and store in DB
        public Cast ScrapeAndStoreCastByShowAndCastId(int ShowId, int CastId)
        {
            Cast Cast = ScraperServices.ScrapeSingleCastByShowAndCastId(ShowId, CastId);  //scraper

            if (Cast != null)
            {
                RepositoryServices.UpdateSingleCast(Cast, ShowId);  // storage
            }
            return(Cast);
        }