| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.imt.intimamedia.events.patient
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.AppointmentVo;
-
- /**
- */
- public class UpdateAppointmentEvent extends SuperEvent
- {
- private var _appointment : AppointmentVo;
- private var _patientUid : String;
-
- public function UpdateAppointmentEvent( appointment : AppointmentVo, patientUid : String )
- {
- super( ApplicationController.UPDATE_APPOINTMENT );
-
- this.appointment = appointment;
- this.patientUid = patientUid;
- }
-
- /**
- * Critères de recherche transporté par l'événement
- *
- * @default null
- */
- public function get appointment () : AppointmentVo
- {
- return _appointment;
- }
-
- /**
- * @private
- */
- public function set appointment ( value : AppointmentVo ) : void
- {
- _appointment = value;
- }
-
- public function get patientUid () : String
- {
- return _patientUid;
- }
-
- /**
- * @private
- */
- public function set patientUid ( value : String ) : void
- {
- _patientUid = value;
- }
- }
- }
|