Beispiel #1
0
 public override void OnNavigatedTo(NavigationParameters parameters)
 {
     base.OnNavigatedTo(parameters);
     FetchCountriesCommand.ExecuteAsync(null);
 }
Beispiel #2
0
 public ChooseCountryViewModel(IApiService apiService, INavigationService navigationService)
 {
     FetchCountriesCommand = new FetchCountriesCommand(apiService, this);
     SelectCurrencyCommand = new SelectCurrencyCommand(this, navigationService);
 }