source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/business/AddPatientToLogDelegate.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 710 bytes
Line 
1/* AddPatientToLogDelegate.as */
2
3package 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.