예제 #1
0
        public MainViewModel()
        {
            CountryRepository countryRepository = new CountryRepository();

            listOfCountries = countryRepository.GetCountries();
            CurrentCountry  = listOfCountries[0];

            NextCountryCommand     = new Command(nextButtonPressed);
            PreviousCountryCommand = new Command(previousButtonPressed);
        }