source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/pt/demog/dao/CairngormPatientChecksDao.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: 947 bytes
Line 
1package gov.va.med.edp.pt.demog.dao {
2import mx.rpc.IResponder;
3import gov.va.med.edp.business.LogSensitivePatientAccessDelegate;
4import gov.va.med.edp.business.CheckSensitivePtAndFlagsDelegate;
5import gov.va.med.edp.pt.demog.model.PatientSelectVO;
6import gov.va.med.edp.pt.demog.IPatientChecksDao;
7public class CairngormPatientChecksDao implements IPatientChecksDao {
8
9 [Bindable]
10 public var logArea:int;
11
12 public function loadPatientChecks(responder:IResponder, pt:PatientSelectVO):void {
13 var delegate: CheckSensitivePtAndFlagsDelegate = new CheckSensitivePtAndFlagsDelegate(responder);
14 delegate.checkSensitivePtAndFlags(logArea, pt.dfn, pt.name);
15 }
16
17 public function logPatientAccess(responder:IResponder, dfn:String):void {
18 var delegate:LogSensitivePatientAccessDelegate = new LogSensitivePatientAccessDelegate(responder);
19 delegate.logSensitivePatientAccess(dfn);
20 }
21}
22}
Note: See TracBrowser for help on using the repository browser.