add comments to patientform

This commit is contained in:
Strati 2018-08-06 21:02:58 +02:00
parent 94db018d32
commit e8516c2dce
1 changed files with 3 additions and 1 deletions

View File

@ -69,8 +69,10 @@ namespace WpfWebClient
Person p = new Person();
//if (ComboBoxSalutations.SelectedValue != null && ComboBoxSalutations.SelectedValue is Salutation)
//if (ComboBoxGenders.SelectedValue != null && ComboBoxGenders.SelectedValue is Gender)
//if (ComboBoxCities.SelectedValue != null && ComboBoxCities.SelectedValue is City)
//Pick all selected fields and send object to client
p.Salutation = (Salutation)ComboBoxSalutations.SelectedValue;
p.Gender = (Gender)ComboBoxGenders.SelectedValue;
p.LastName = txtLastName.Text;