public MovieTitleListViewModel(INavigationService navigationService, IXbmcHost host) { this.navigationService = navigationService; this.host = host; this.Title = TitleString; this.Description = DescriptionString; this.Image = null; }
public MovieGenresSelectorViewModel(IXbmcHost host, INavigationService navigationService) { this.host = host; this.navigationService = navigationService; this.Title = TitleString; this.Description = "browse by movies genre"; this.Image = null; }
public RecentlyAddedMoviesViewModel(IXbmcHost host, INavigationService navigationService) { this.host = host; this.navigationService = navigationService; }
internal TvshowViewModel(IXbmcHost host, INavigationService navigationService, Tvshow tvshow) : this(host, navigationService) { this.tvshow = tvshow; }
public TvshowViewModel(IXbmcHost host, INavigationService navigationService) { this.host = host; this.navigationService = navigationService; }
internal TvEpisodeViewModel(IXbmcHost host, INavigationService navigationService, TvEpisode episode) : this(host, navigationService) { this.episode = episode; }
internal TvSeasonViewModel(IXbmcHost xbmcHost, INavigationService navigationService, TvSeason tvSeason) : this(xbmcHost, navigationService) { this.tvSeason = tvSeason; }
public TvEpisodeListViewModel(IXbmcHost host, INavigationService navigationService) { this.host = host; this.navigationService = navigationService; }