Esempio n. 1
0
        public void WelcomeAction()
        {
            CountryListView cl = new CountryListView(CountryDB);

            Console.WriteLine("Hello, welcome to the country app. Please select a country from the following list: ");
            cl.Display();
        }
Esempio n. 2
0
 public CountryController(params Country[] countries)
 {
     CountryDb     = countries.ToList();
     FancyGraphics = false;
     listView      = new CountryListView(CountryDb);
 }