private void Zapisz(object parametr) { if (_edytowany.ID == -1) { using (KlientDAO bd = new KlientDAO()) _edytowany.ID = bd.Dodaj(_edytowany); } else { using (KlientDAO bd = new KlientDAO()) bd.Edytuj(_edytowany); } Powrot?.Invoke(this, new RoutedEventArgs()); }
private void Powroc(object parametr) { Powrot?.Invoke(this, new RoutedEventArgs()); }