| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.imt.intimamedia.vo
- {
- import com.imt.intimamedia.helpers.AMFDateConverter;
-
- [RemoteClass(alias="com.imt.intimamedia.vo.PersonalHistoryVo")]
- [Bindable]
- /**
- * Objet de RDV
- */
- public class PersonalHistoryVo
- {
- private var _coronaryDisease : Boolean = false;
- private var _typeCoronaryDisease : String;
- private var _lastCoronaryDiseaseAge : String;
- private var _aic : Boolean = false;
- private var _numberAic : int;
- private var _typeAic : String;
- private var _ethiologyAic : String;
- private var _lastAicAge : String;
-
- /**
- * Maladies coronaires
- *
- * @default false
- */
- public function get coronaryDisease () : Boolean
- {
- return _coronaryDisease;
- }
-
- /**
- * @private
- */
- public function set coronaryDisease ( value : Boolean ) : void
- {
- _coronaryDisease = value;
- }
-
- /**
- * Type de maladie coronaire
- *
- * @default ""
- */
- public function get typeCoronaryDisease () : String
- {
- return _typeCoronaryDisease;
- }
-
- /**
- * @private
- */
- public function set typeCoronaryDisease ( value : String ) : void
- {
- _typeCoronaryDisease = value;
- }
-
- /**
- * Age de survenue de maladie coronaire
- *
- * @default ""
- */
- public function get lastCoronaryDiseaseAge () : String
- {
- return _lastCoronaryDiseaseAge;
- }
-
- /**
- * @private
- */
- public function set lastCoronaryDiseaseAge ( value : String ) : void
- {
- _lastCoronaryDiseaseAge = value;
- }
-
- /**
- * AIC
- *
- * @default 0
- */
- public function get aic () : Boolean
- {
- return _aic;
- }
-
- /**
- * @private
- */
- public function set aic ( value : Boolean ) : void
- {
- _aic = value;
- }
-
- /**
- * Nombre des AIC
- *
- * @default 0
- */
- public function get numberAic () : int
- {
- return _numberAic;
- }
-
- /**
- * @private
- */
- public function set numberAic ( value : int ) : void
- {
- _numberAic = value;
- }
-
- /**
- * Type des AIC
- *
- * @default 0
- */
- public function get typeAic () : String
- {
- return _typeAic;
- }
-
- /**
- * @private
- */
- public function set typeAic ( value : String ) : void
- {
- _typeAic = value;
- }
-
- /**
- * Ethiologie des AIC
- *
- * @default 0
- */
- public function get ethiologyAic () : String
- {
- return _ethiologyAic;
- }
-
- /**
- * @private
- */
- public function set ethiologyAic ( value : String ) : void
- {
- _ethiologyAic = value;
- }
-
- /**
- * Age de survenue de maladie Aic
- *
- * @default ""
- */
- public function get lastAicAge () : String
- {
- return _lastAicAge;
- }
-
- /**
- * @private
- */
- public function set lastAicAge ( value : String ) : void
- {
- _lastAicAge = value;
- }
- }
- }
|