| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.imt.intimamedia.events.patient
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.FamilyHistoryVo;
- import com.imt.intimamedia.vo.PersonalHistoryVo;
-
- /**
- * Evénement de de création des antécédants personnels
- */
- public class AddFamilyHistoryEvent extends SuperEvent
- {
- private var _familyHistoryVo : FamilyHistoryVo;
- private var _id : int;
-
- public function AddFamilyHistoryEvent( familyHistoryVo : FamilyHistoryVo, id : int, dispatcher : * = null )
- {
- super( ApplicationController.ADD_FAMILY_HISTORY );
-
- this.familyHistoryVo = familyHistoryVo;
- this.id = id;
- this.dispatcher = dispatcher;
- }
-
- /**
- * FamilyHistoryVo transporté par l'événement
- *
- * @default null
- */
- public function get familyHistoryVo () : FamilyHistoryVo
- {
- return _familyHistoryVo;
- }
-
- /**
- * @private
- */
- public function set familyHistoryVo ( value : FamilyHistoryVo ) : void
- {
- _familyHistoryVo = value;
- }
-
- /**
- * ID du RDV transporté par l'événement
- *
- * @default null
- */
- public function get id () : int
- {
- return _id;
- }
-
- /**
- * @private
- */
- public function set id ( value : int ) : void
- {
- _id = value;
- }
- }
- }
|