void NewKunde()
 {
     var tmp = new Dialogs.KundeDetail();
     tmp.ShowDialog();
     BindTo();
 }
 void EditKunde(Kunde k)
 {
     var tmp = new Dialogs.KundeDetail(k);
     tmp.ShowDialog();
     BindTo();
 }