public List <Currency> GetTransactions() { _currenciesView = new CurrenciesView(); var currencies = _currenciesView.GetRequest().Result; return(currencies); }
public ExchangePage() { InitializeComponent(); _currenciesView = new CurrenciesView(); WalletsFromList = GetWallets(); WalletsToList = GetToWallets(); BindingContext = new WalletPickerMVVMViewModel(WalletsFromList, WalletsToList); }
public CurrencyPickerMVVMViewModel() { CurrenciesList = new List <Currency>(); CurrenciesView = new CurrenciesView(); CurrenciesList = CurrenciesView.GetRequest().Result; }