Example #1
0
        public void CountryAction(Country c)
        {
            CountryView cv = new CountryView();

            cv.DisplayCountry = c;
            cv.Display();
        }
Example #2
0
        public void CountryAction(Country c)
        {
            CountryView view = new CountryView(c);

            view.Display();
        }
Example #3
0
        public void CountryAction(Country country)
        {
            CountryView countryView = new CountryView(country);

            countryView.Display();
        }
Example #4
0
        public void CountryAction(Country c)
        {
            CountryView cc = new CountryView(c);

            cc.Display();
        }