Ejemplo n.º 1
0
        public void CountryAction(Country c)
        {
            CountryView country = new CountryView(c);

            country.Display();
        }
Ejemplo n.º 2
0
 public CountryView(Country _displayCountry)
 {
     DisplayCountry = _displayCountry;
 }
Ejemplo n.º 3
0
 public CountryView(Country displayCountry)
 {
     DisplayCountry = displayCountry;
 }