private void ForceInitialLoadTvShowImages()
 {
     FanartUrl.RefreshImage(Path.Combine(_path, "fanart.jpg"));
     PosterUrl.RefreshImage(Path.Combine(_path, "poster.jpg"));
     BannerUrl.RefreshImage(Path.Combine(_path, "banner.jpg"));
     foreach (ISeasonImagesViewModel season in SeasonImages)
     {
         season.Refresh();
     }
 }
 public void Refresh()
 {
     PosterUrl.RefreshImage();
     BannerUrl.RefreshImage();
 }