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