/// <summary> /// Returns an instance of <see cref="PatientSummary"/> for a <see cref="Study"/>. /// </summary> /// <param name="study"></param> /// <returns></returns> /// <remark> /// /// </remark> static public PatientSummary CreatePatientSummary(Study study) { PatientSummary patient = new PatientSummary(); patient.PatientId = study.PatientId; patient.Birthdate = study.PatientsBirthDate; patient.PatientName = study.PatientsName; patient.Sex = study.PatientsSex; PatientAdaptor adaptor = new PatientAdaptor(); Patient pat = adaptor.Get(study.PatientKey); patient.IssuerOfPatientId = pat.IssuerOfPatientId; return patient; }
/// <summary> /// Returns an instance of <see cref="PatientSummary"/> for a <see cref="Study"/>. /// </summary> /// <param name="study"></param> /// <returns></returns> /// <remark> /// /// </remark> static public PatientSummary CreatePatientSummary(Study study) { PatientSummary patient = new PatientSummary(); patient.PatientId = study.PatientId; patient.Birthdate = study.PatientsBirthDate; patient.PatientName = study.PatientsName; patient.Sex = study.PatientsSex; PatientAdaptor adaptor = new PatientAdaptor(); Patient pat = adaptor.Get(study.PatientKey); patient.IssuerOfPatientId = pat.IssuerOfPatientId; return(patient); }