public IHttpActionResult Get()
        {
            TvShowServices tvShowServices = CreateTvShowServices();
            var            tvShows        = tvShowServices.GetTvShows();

            return(Ok(tvShows));
        }
        public IHttpActionResult Get(string title)
        {
            TvShowServices tvShowServices = CreateTvShowServices();
            var            tvshow         = tvShowServices.GetTvShowByTitle(title);

            return(Ok(tvshow));
        }
        private TvShowServices CreateTvShowServices()
        {
            // var userId = Guid.Parse(User.Identity.GetUserId());
            var service = new TvShowServices();

            return(service);
        }