Exemplo n.º 1
0
 public MovieViewModel(INavigationService navigationService)
     : base(navigationService)
 {
     _imdbService = new IMDBService();
     Loading = true;
 }
Exemplo n.º 2
0
 public MovieListViewModel(INavigationService navigationService) : base(navigationService)
 {
     _imdbService = new IMDBService();
     
     Populate();
 }