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