private void SaveButton_Click(object sender, RoutedEventArgs e)
        {
            GuestPatientDTO guestPatientDTO = CreateGuestPatientDTOFromUserInput();

            _patientService.CreatePatientGuestAccount(guestPatientDTO);
            this.Close();
            ShowCreatedPatientAccountInfoDialog();
        }