| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- package com.imt.intimamedia.vo
- {
- import com.imt.intimamedia.helpers.AMFDateConverter;
-
- [RemoteClass(alias="com.imt.intimamedia.vo.FamilyHistoryVo")]
- [Bindable]
- /**
- * Objet des antécédents familiaux
- */
- public class FamilyHistoryVo
- {
- private var _fatherCoronaryPathology : Boolean = false;
- private var _fatherCoronaryPathologyAge : int = 0;
- private var _motherCoronaryPathology : Boolean = false;
- private var _motherCoronaryPathologyAge : int = 0;
- private var _bsCoronaryPathology : Boolean = false;
- private var _bsCoronaryPathologyAge : int = 0;
- private var _fatherVascularPathology : Boolean = false;
- private var _fatherVascularPathologyAge : int = 0;
- private var _motherVascularPathology : Boolean = false;
- private var _motherVascularPathologyAge : int = 0;
- private var _bsVascularPathology : Boolean = false;
- private var _bsVascularPathologyAge : int = 0;
-
- /**
- * Présence de pathologies coronaires du père
- *
- * @default false
- */
- public function get fatherCoronaryPathology () : Boolean
- {
- return _fatherCoronaryPathology;
- }
-
- /**
- * @private
- */
- public function set fatherCoronaryPathology ( value : Boolean ) : void
- {
- _fatherCoronaryPathology = value;
- }
-
- /**
- * Durée des pathologies coronaires du père
- *
- * @default false
- */
- public function get fatherCoronaryPathologyAge () : int
- {
- return _fatherCoronaryPathologyAge;
- }
-
- /**
- * @private
- */
- public function set fatherCoronaryPathologyAge ( value : int ) : void
- {
- _fatherCoronaryPathologyAge = value;
- }
-
- /**
- * Présence de pathologies coronaires de la mère
- *
- * @default false
- */
- public function get motherCoronaryPathology () : Boolean
- {
- return _motherCoronaryPathology;
- }
-
- /**
- * @private
- */
- public function set motherCoronaryPathology ( value : Boolean ) : void
- {
- _motherCoronaryPathology = value;
- }
-
- /**
- * Durée des pathologies coronaires de la mère
- *
- * @default false
- */
- public function get motherCoronaryPathologyAge () : int
- {
- return _motherCoronaryPathologyAge;
- }
-
- /**
- * @private
- */
- public function set motherCoronaryPathologyAge ( value : int ) : void
- {
- _motherCoronaryPathologyAge = value;
- }
-
- /**
- * Présence de pathologies coronaires des frères et soeurs
- *
- * @default false
- */
- public function get bsCoronaryPathology () : Boolean
- {
- return _bsCoronaryPathology;
- }
-
- /**
- * @private
- */
- public function set bsCoronaryPathology ( value : Boolean ) : void
- {
- _bsCoronaryPathology = value;
- }
-
- /**
- * Durée des pathologies coronaires des frères et soeurs
- *
- * @default false
- */
- public function get bsCoronaryPathologyAge () : int
- {
- return _bsCoronaryPathologyAge;
- }
-
- /**
- * @private
- */
- public function set bsCoronaryPathologyAge ( value : int ) : void
- {
- _bsCoronaryPathologyAge = value;
- }
-
- /**
- * Présence de pathologies vasculaires du père
- *
- * @default false
- */
- public function get fatherVascularPathology () : Boolean
- {
- return _fatherVascularPathology;
- }
-
- /**
- * @private
- */
- public function set fatherVascularPathology ( value : Boolean ) : void
- {
- _fatherVascularPathology = value;
- }
-
- /**
- * Durée des pathologies vasculaires du père
- *
- * @default false
- */
- public function get fatherVascularPathologyAge () : int
- {
- return _fatherVascularPathologyAge;
- }
-
- /**
- * @private
- */
- public function set fatherVascularPathologyAge ( value : int ) : void
- {
- _fatherVascularPathologyAge = value;
- }
-
- /**
- * Présence de pathologies vasculaires de la mère
- *
- * @default false
- */
- public function get motherVascularPathology () : Boolean
- {
- return _motherVascularPathology;
- }
-
- /**
- * @private
- */
- public function set motherVascularPathology ( value : Boolean ) : void
- {
- _motherVascularPathology = value;
- }
-
- /**
- * Durée des pathologies vasculaires de la mère
- *
- * @default false
- */
- public function get motherVascularPathologyAge () : int
- {
- return _motherVascularPathologyAge;
- }
-
- /**
- * @private
- */
- public function set motherVascularPathologyAge ( value : int ) : void
- {
- _motherVascularPathologyAge = value;
- }
-
- /**
- * Présence de pathologies vasculaires des frères et soeurs
- *
- * @default false
- */
- public function get bsVascularPathology () : Boolean
- {
- return _bsVascularPathology;
- }
-
- /**
- * @private
- */
- public function set bsVascularPathology ( value : Boolean ) : void
- {
- _bsVascularPathology = value;
- }
-
- /**
- * Durée des pathologies vasculaires des frères et soeurs
- *
- * @default false
- */
- public function get bsVascularPathologyAge () : int
- {
- return _bsVascularPathologyAge;
- }
-
- /**
- * @private
- */
- public function set bsVascularPathologyAge ( value : int ) : void
- {
- _bsVascularPathologyAge = value;
- }
- }
- }
|