| Line | |
|---|
| 1 | /* AddPatientToLogDelegate.as */
|
|---|
| 2 |
|
|---|
| 3 | package gov.va.med.edp.business
|
|---|
| 4 | {
|
|---|
| 5 | import gov.va.med.edp.pt.demog.model.PatientSelectVO;
|
|---|
| 6 |
|
|---|
| 7 | import mx.rpc.IResponder;
|
|---|
| 8 |
|
|---|
| 9 | public class AddPatientToLogDelegate extends ResponderChainingDelegate
|
|---|
| 10 | {
|
|---|
| 11 |
|
|---|
| 12 | public function AddPatientToLogDelegate(responder:IResponder)
|
|---|
| 13 | {
|
|---|
| 14 | super(responder, "addPatientToLog" );
|
|---|
| 15 | }
|
|---|
| 16 |
|
|---|
| 17 | public function addPatientToLog(newPatient: PatientSelectVO, area: int,
|
|---|
| 18 | localTime: String, choiceTS: String): void
|
|---|
| 19 | {
|
|---|
| 20 | var params: Object = new Object();
|
|---|
| 21 | params.addPatient = newPatient.toString();
|
|---|
| 22 | params.area = area;
|
|---|
| 23 | params.localTime = localTime;
|
|---|
| 24 | params.choiceTS = choiceTS;
|
|---|
| 25 |
|
|---|
| 26 | send(params);
|
|---|
| 27 | }
|
|---|
| 28 | }
|
|---|
| 29 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.