private async Task GetDetail()
 {
     if (Show.Ids.Tmdb.HasValue)
     {
         ShowDetail = await _movieDbShowService.GetShowDetail(Show.Ids.Tmdb.Value);
     }
 }
        private async Task LoadDetail()
        {
            var detail = await _showService.GetShowDetail(Item.Id);

            ShowDetail = detail;
        }