gov.va.medora.mdo.api.PatientApi.addHomeDate C# (CSharp) 메소드

addHomeDate() 공개 메소드

public addHomeDate ( gov.va.medora.mdo.dao.AbstractConnection cxn, Patient patient ) : void
cxn gov.va.medora.mdo.dao.AbstractConnection
patient Patient
리턴 void
        public void addHomeDate(AbstractConnection cxn, Patient patient)
        {
            ((IPatientDao)cxn.getDao(DAO_NAME)).addHomeData(patient);
        }

Usage Example

예제 #1
0
파일: PatientLib.cs 프로젝트: OSEHRA/mdws
 internal Patient getHomeData(Patient patient)
 {
     PatientApi api = new PatientApi();
     api.addHomeDate(mySession.ConnectionSet.BaseConnection, patient);
     return patient;
 }
All Usage Examples Of gov.va.medora.mdo.api.PatientApi::addHomeDate