public void CountryAction(Country c) { CountryView v = new CountryView(c); v.Display(); }
public void CountryAction(Country country) { CountryView onlyForCountryInfo = new CountryView(country); onlyForCountryInfo.Display(); }
public void CountryAction(Country c) { CountryView countryView = new CountryView(c); countryView.Display(); }