public HomePageViewModel()
        {
            IsBusy      = true;
            _fifaClient = new FifaClient();

            SelectedCompetition = new Command <Competition>(OnCompetitionSelected);
            LoadingCommand      = new Command(ExecuteLoading);
            RefreshCommand      = new Command(ExecuteRefresh);
        }
 public TeamPageViewModel(INavigationService navigationService) : base(navigationService)
 {
     _fifaClient = new FifaClient();
 }
Exemple #3
0
 public CompetitionViewModel()
 {
     _fifaClient  = new FifaClient();
     MatchCommand = new Command(ViewMatch);
 }