package gov.va.med.edp.pt.demog.view { import gov.va.med.edp.pt.demog.model.PatientSelectVO; import flash.events.Event; public class SelectPatientEvent extends Event { public static const EVENT_CANCEL:String = "cancel"; public static const EVENT_SELECT_PATIENT:String = "selectPatient"; public var patient:PatientSelectVO; public var selectAndContinue:Boolean; public function SelectPatientEvent(type:String, patient:PatientSelectVO = null, selectAndContinue:Boolean = false) { super(type); this.patient = patient; this.selectAndContinue = selectAndContinue; } } }