///
        /// <summary>   Returns a patient from the search screen </summary>
        ///
        /// <remarks>    2019-04-20. </remarks>
        ///
        /// <param name="p">    A Patient to process. </param>
        ///

        public void ReturnPatient(Demographics.Patient p)
        {
            patient = p; //Fill the patient with the returned search information

            ModPatientSearchParent.Children.Remove(patientToMod);
            FillChart(); //Fill the textboxes with the given information
        }
Exemple #2
0
        ///
        /// <summary>   Returns a patient from the search bar </summary>
        ///
        /// <remarks>   2019-04-20. </remarks>
        ///
        /// <param name="p">    A Patient to process. </param>
        ///

        public void ReturnPatient(Demographics.Patient p)
        {
            patient = p;                                  //Set the reurned patient  to the patient to use for the report
            HoHPatient.Children.Remove(patientToSearch);  //Remove the search overlay
            hohFamily = Database.HoH_Report(patient.HCN); //Get the Report on the returned patient in a list
            UpdateDisplayList();                          //Show the list
        }