Esempio n. 1
0
 public Frm_Country()
 {
     InitializeComponent();
     countryPresenter = new CountryPresenter(this);
 }
 public CountriesController(ICountryService countryService, CountryPresenter countryPresenter)
 {
     _countryService   = countryService;
     _countryPresenter = countryPresenter;
 }