public DetailsView(Model.Country country) { InitializeComponent(); this.Nome.Text = country.Name; this.Longitude.Text = country.Longitude.ToString(); this.Latitude.Text = country.Latitude.ToString(); }
public DetailView(Model.Country country) { InitializeComponent(); this.Country = country; }