| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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;
-
- /**
- * Evénement de création d'un rdv patient
- */
- public class CreateAppointmentEvent extends SuperEvent
- {
- private var _appointment : AppointmentVo;
- private var _patientUid : String;
-
- public function CreateAppointmentEvent(appointment : AppointmentVo, patientUid : String, dispatcher : * = null )
- {
- super( ApplicationController.CREATE_APPOINTMENT );
-
- this.appointment = appointment;
- this.patientUid = patientUid;
- this.dispatcher = dispatcher;
- }
-
- /**
- * RDV 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;
- }
- }
- }
|