source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/business/MatchClosedVisitsDelegate.as@ 1240

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

new version from the VA

File size: 512 bytes
Line 
1/* MatchClosedVisitsDelegate.as */
2
3package gov.va.med.edp.business
4{
5 import mx.rpc.IResponder;
6
7 public class MatchClosedVisitsDelegate extends ResponderChainingDelegate
8 {
9 public function MatchClosedVisitsDelegate(responder:IResponder)
10 {
11 super(responder, "matchClosed" );
12 }
13
14 public function matchClosedVisits(area: int, partial:String):void
15 {
16 var params:Object = new Object();
17 params.area = area;
18 params.partial = partial;
19
20 send(params);
21 }
22 }
23}
Note: See TracBrowser for help on using the repository browser.