PersonalHistoryVo.as 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.imt.intimamedia.vo
  2. {
  3. import com.imt.intimamedia.helpers.AMFDateConverter;
  4. [RemoteClass(alias="com.imt.intimamedia.vo.PersonalHistoryVo")]
  5. [Bindable]
  6. /**
  7. * Objet de RDV
  8. */
  9. public class PersonalHistoryVo
  10. {
  11. private var _coronaryDisease : Boolean = false;
  12. private var _typeCoronaryDisease : String;
  13. private var _lastCoronaryDiseaseAge : String;
  14. private var _aic : Boolean = false;
  15. private var _numberAic : int;
  16. private var _typeAic : String;
  17. private var _ethiologyAic : String;
  18. private var _lastAicAge : String;
  19. /**
  20. * Maladies coronaires
  21. *
  22. * @default false
  23. */
  24. public function get coronaryDisease () : Boolean
  25. {
  26. return _coronaryDisease;
  27. }
  28. /**
  29. * @private
  30. */
  31. public function set coronaryDisease ( value : Boolean ) : void
  32. {
  33. _coronaryDisease = value;
  34. }
  35. /**
  36. * Type de maladie coronaire
  37. *
  38. * @default ""
  39. */
  40. public function get typeCoronaryDisease () : String
  41. {
  42. return _typeCoronaryDisease;
  43. }
  44. /**
  45. * @private
  46. */
  47. public function set typeCoronaryDisease ( value : String ) : void
  48. {
  49. _typeCoronaryDisease = value;
  50. }
  51. /**
  52. * Age de survenue de maladie coronaire
  53. *
  54. * @default ""
  55. */
  56. public function get lastCoronaryDiseaseAge () : String
  57. {
  58. return _lastCoronaryDiseaseAge;
  59. }
  60. /**
  61. * @private
  62. */
  63. public function set lastCoronaryDiseaseAge ( value : String ) : void
  64. {
  65. _lastCoronaryDiseaseAge = value;
  66. }
  67. /**
  68. * AIC
  69. *
  70. * @default 0
  71. */
  72. public function get aic () : Boolean
  73. {
  74. return _aic;
  75. }
  76. /**
  77. * @private
  78. */
  79. public function set aic ( value : Boolean ) : void
  80. {
  81. _aic = value;
  82. }
  83. /**
  84. * Nombre des AIC
  85. *
  86. * @default 0
  87. */
  88. public function get numberAic () : int
  89. {
  90. return _numberAic;
  91. }
  92. /**
  93. * @private
  94. */
  95. public function set numberAic ( value : int ) : void
  96. {
  97. _numberAic = value;
  98. }
  99. /**
  100. * Type des AIC
  101. *
  102. * @default 0
  103. */
  104. public function get typeAic () : String
  105. {
  106. return _typeAic;
  107. }
  108. /**
  109. * @private
  110. */
  111. public function set typeAic ( value : String ) : void
  112. {
  113. _typeAic = value;
  114. }
  115. /**
  116. * Ethiologie des AIC
  117. *
  118. * @default 0
  119. */
  120. public function get ethiologyAic () : String
  121. {
  122. return _ethiologyAic;
  123. }
  124. /**
  125. * @private
  126. */
  127. public function set ethiologyAic ( value : String ) : void
  128. {
  129. _ethiologyAic = value;
  130. }
  131. /**
  132. * Age de survenue de maladie Aic
  133. *
  134. * @default ""
  135. */
  136. public function get lastAicAge () : String
  137. {
  138. return _lastAicAge;
  139. }
  140. /**
  141. * @private
  142. */
  143. public function set lastAicAge ( value : String ) : void
  144. {
  145. _lastAicAge = value;
  146. }
  147. }
  148. }