當前位置: 首頁>>代碼示例>>C#>>正文


C# AbstractConnection.getDao方法代碼示例

本文整理匯總了C#中gov.va.medora.mdo.dao.AbstractConnection.getDao方法的典型用法代碼示例。如果您正苦於以下問題:C# AbstractConnection.getDao方法的具體用法?C# AbstractConnection.getDao怎麽用?C# AbstractConnection.getDao使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gov.va.medora.mdo.dao.AbstractConnection的用法示例。


在下文中一共展示了AbstractConnection.getDao方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: getAppointments

 public Appointment[] getAppointments(AbstractConnection cxn)
 {
     IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);
     if (dao == null)
     {
         return null;
     }
     return dao.getAppointments();
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:9,代碼來源:EncounterApi.cs

示例2: getAppointments

 public Appointment[] getAppointments(AbstractConnection cxn, int pastDays, int futureDays)
 {
     IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);
     if (dao == null)
     {
         return null;
     }
     return dao.getAppointments(pastDays,futureDays);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:9,代碼來源:EncounterApi.cs

示例3: getAdmissions

 public InpatientStay[] getAdmissions(AbstractConnection cxn)
 {
     IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);
     if (dao == null)
     {
         return null;
     }
     return dao.getAdmissions();
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:9,代碼來源:EncounterApi.cs

示例4: hasClinicAccess

 public bool hasClinicAccess(AbstractConnection cxn, string clinicId)
 {
     return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).hasClinicAccess(clinicId);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例5: getChemHemReports

 // Gets multiple reports from a single site
 public static ChemHemReport[] getChemHemReports(AbstractConnection cxn, string pid, string fromDate, string toDate)
 {
     return ((IChemHemDao)cxn.getDao(DAO_NAME)).getChemHemReports(pid, fromDate, toDate);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:5,代碼來源:ChemHemReport.cs

示例6: getWards

 public HospitalLocation[] getWards(AbstractConnection cxn)
 {
     IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);
     if (dao == null)
     {
         return null;
     }
     return dao.getWards();
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:9,代碼來源:EncounterApi.cs

示例7: getTeams

 public DictionaryHashList getTeams(AbstractConnection cxn)
 {
     return ((IEncounterDao)cxn.getDao(DAO_NAME)).getTeams();
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例8: getStayMovementsByDateRange

 public InpatientStay[] getStayMovementsByDateRange(AbstractConnection cxn, string fromDate, string toDate)
 {
     return ((IEncounterDao)cxn.getDao(DAO_NAME)).getStayMovementsByDateRange(fromDate, toDate);
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例9: getSiteDivisions

 public Site[] getSiteDivisions(AbstractConnection cxn, string siteId)
 {
     return ((IEncounterDao)cxn.getDao(DAO_NAME)).getSiteDivisions(siteId);
 }
開發者ID:ChristopherEdwards,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例10: getClinicAvailability

 public string getClinicAvailability(AbstractConnection cxn, string clinicId)
 {
     return ((IEncounterDao)cxn.getDao(DAO_NAME)).getClinicAvailability(clinicId);
 }
開發者ID:VAchris,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例11: getAppointmentTypes

 public IList<AppointmentType> getAppointmentTypes(AbstractConnection cxn, string target)
 {
     return ((IEncounterDao)cxn.getDao(DAO_NAME)).getAppointmentTypes(target);
 }
開發者ID:VAchris,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例12: getAppointmentTypes

 public IList<AppointmentType> getAppointmentTypes(AbstractConnection cxn, string target)
 {
     return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).getAppointmentTypes(target);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例13: makeAppointment

 //public string getClinicAvailability(AbstractConnection cxn, string clinicId)
 //{
 //    return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).getClinicAvailability(clinicId);
 //}
 public Appointment makeAppointment(AbstractConnection cxn, Appointment appointment)
 {
     return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).makeAppointment(appointment);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:8,代碼來源:EncounterApi.cs

示例14: isValidStopCode

 public bool isValidStopCode(AbstractConnection cxn, string stopCodeId)
 {
     return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).isValidStopCode(stopCodeId);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs

示例15: hasValidStopCode

 public bool hasValidStopCode(AbstractConnection cxn, string clinicId)
 {
     return ((ISchedulingDao)cxn.getDao("ISchedulingDao")).hasValidStopCode(clinicId);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:4,代碼來源:EncounterApi.cs


注:本文中的gov.va.medora.mdo.dao.AbstractConnection.getDao方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。