Esempio n. 1
0
        }                         // Default constructor for serialization

        public MedicationHx(Patient owner)
        {
            theProband = owner;

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

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