private void Add() { wAddUpdateTarif add = new wAddUpdateTarif(context, true); if (add.ShowDialog() == true) { MessageBox.Show("Объект добавлен"); } }
private void Update() { var item = (TTarif)dgdTarif.SelectedItem as TTarif; wAddUpdateTarif update = new wAddUpdateTarif(context, false); update.DataContext = item; if (update.ShowDialog() == true) { MessageBox.Show("Объект изменён"); } }