//Редактирование страны, обновление данных в связанных таблицах private void saveCountryBtn_Click(object sender, EventArgs e) { try { if (countryCode.Text == "" || name.Text == "") { MessageBox.Show("Заполните все поля!"); return; } DBConnection.EditCountry(countryID, countryName, countryCode.Text, name.Text); DBConnection.GetCountries(); Refs.formDescriptor.countriesTable.DataSource = DBConnection.dtCountries; Refs.ReadCountryTableRow(0); this.Close(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }