| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.imt.intimamedia.events.report
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.ReportDataVo;
-
- /**
- * Evènement de sauvegarde des données pdf
- */
- public class SaveDataEvent extends SuperEvent
- {
- private var _reportDataVo : ReportDataVo;
- private var _appointment : int;
-
- public function SaveDataEvent( reportDataVo : ReportDataVo, appointment : int )
- {
- super( ApplicationController.SAVE_DATA );
-
- this.reportDataVo = reportDataVo;
- this.appointment = appointment;
- }
-
- public function get reportDataVo () : ReportDataVo
- {
- return _reportDataVo;
- }
-
-
- public function set reportDataVo ( value : ReportDataVo ) : void
- {
- _reportDataVo = value;
- }
-
- /**
- * ID du RDV en cours
- *
- * @default 0
- */
- public function get appointment () : int
- {
- return _appointment;
- }
-
- public function set appointment ( value : int ) : void
- {
- _appointment = value;
- }
- }
- }
|