public MedicationHx(Patient owner) { theProband = owner; Medications = new List<Medication>(); chemoprevention= new Chemoprevention(owner); }
/**************************************************************************************************/ private void LoadOrGetChemoprevention() { chemoprevention = SessionManager.Instance.GetActivePatient().MedHx.chemoprevention; if (chemoprevention != null) { chemoprevention.AddHandlersWithLoad(ChemoPreventionChanged, ChemoPreventionLoaded, null); } }