source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/business/config/LoadConfigStaffDelegate.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: 611 bytes
Line 
1/* LoadConfigStaffDelegate.as */
2
3package gov.va.med.edp.business.config
4{
5 import com.adobe.cairngorm.business.ServiceLocator;
6
7 import gov.va.med.edp.business.ResponderChainingDelegate;
8
9 import mx.rpc.AsyncToken;
10 import mx.rpc.IResponder;
11
12 public class LoadConfigStaffDelegate extends ResponderChainingDelegate
13 {
14 public function LoadConfigStaffDelegate(responder:IResponder)
15 {
16 super(responder, "loadStaffConfig");
17 }
18
19 public function loadConfigStaff(area: int):void
20 {
21 var params:Object = new Object();
22 params.area = area;
23 send(params);
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.