Example #1
0
 protected void ShowAddContactWindowExecuted()
 {
     var addContactWindow = new AddContactWindow(_core);
     addContactWindow.ShowDialog();
 }
 private void ShowAddContactWindowExecuted(Client client)
 {
     var contact = new AddContactWindow(_core, client);
     contact.Show();
 }