private void ContinueButton_Click(object sender, RoutedEventArgs e)
 {
     Trace.WriteLine(Patient.FirstName);
     Application.Current.Resources["PatientInfo"] = Patient;
     EnterInsuranceWindow nextWindow = new EnterInsuranceWindow();
     nextWindow.Show();
     this.Close();
 }
 private void ContinueButton_Click(object sender, RoutedEventArgs e)
 {
     Patient.Symptom = Symptom;
     Application.Current.Resources["Patient"] = Patient;
     EnterInsuranceWindow nextWindow = new EnterInsuranceWindow();
     nextWindow.Show();
     this.Close();
 }