示例#1
0
        public MedicationHx(Patient owner)
        {
            theProband = owner;

            Medications = new List<Medication>();
            chemoprevention= new Chemoprevention(owner);
        }
示例#2
0
        /**************************************************************************************************/
        private void LoadOrGetChemoprevention()
        {
            chemoprevention = SessionManager.Instance.GetActivePatient().MedHx.chemoprevention;

            if (chemoprevention != null)
            {
                chemoprevention.AddHandlersWithLoad(ChemoPreventionChanged, ChemoPreventionLoaded, null);
            }
        }