/** * Build Q23 event * * @param CPatient $patient Person * * @see parent::build() * * @return void */ function build($patient) { parent::build($patient); // QPD $this->addQPD($patient); // RCP $this->addRCP($patient); }
/** * Build Q22 event * * @param CPatient $patient Person * * @see parent::build() * * @return void */ function build($patient) { parent::build($patient); // QPD $this->addQPD($patient); // RCP $this->addRCP($patient); // DSC if (isset($patient->_pointer)) { $this->addDSC($patient); } }