public HomeViewModel(IWorldDataService worldDataService,
                             IDialogService dialogService,
                             INavigationService navigationService)
        {
            _worldDataService  = worldDataService;
            _dialogService     = dialogService;
            _navigationService = navigationService;

            CountryList = new ObservableCollection <Country>();
        }
Example #2
0
 public WebDataController(IWebDataScrapingService service, IWorldDataService worldDataService)
 {
     _service          = service;
     _worldDataService = worldDataService;
 }