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


C# dao.AbstractConnection類代碼示例

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


AbstractConnection類屬於gov.va.medora.mdo.dao命名空間,在下文中一共展示了AbstractConnection類的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: 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

示例3: 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

示例4: addConnection

 public void addConnection(string sitecode, AbstractConnection cxn)
 {
     lock (_cxns)
     {
         if (!_cxns.ContainsKey(sitecode))
         {
             _cxns.Add(sitecode, new List<AbstractConnection>());
         }
         _cxns[sitecode].Add(cxn);
     }
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:11,代碼來源:QueryThreadConnectionPool.cs

示例5: ddrLister

 public string[] ddrLister(
     AbstractConnection cxn,
     string file,
     string iens,
     string flds,
     string flags,
     string maxRex,
     string from,
     string part,
     string xref,
     string screen,
     string identifier)
 {
     VistaToolsDao dao = new VistaToolsDao(cxn);
     return dao.ddrLister(file, iens, flds, flags, maxRex, from, part, xref, screen, identifier);
 }
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:16,代碼來源:ToolsApi.cs

示例6: getConsultDao

 public override IConsultDao getConsultDao(AbstractConnection cxn)
 {
     return new VistaConsultDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例7: getChemHemDao

 public override IChemHemDao getChemHemDao(AbstractConnection cxn)
 {
     return new VistaChemHemDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例8: getClinicalDao

 public override IClinicalDao getClinicalDao(AbstractConnection cxn)
 {
     return new VistaClinicalDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例9: getUserDao

 public override IUserDao getUserDao(AbstractConnection cxn)
 {
     return new VistaUserDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例10: getVitalsDao

 public override IVitalsDao getVitalsDao(AbstractConnection cxn)
 {
     return new VistaVitalsDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例11: getLocationDao

 public override ILocationDao getLocationDao(AbstractConnection cxn)
 {
     return new VistaLocationDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例12: skipThisConnection

 public abstract override bool skipThisConnection(AbstractConnection c);
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:1,代碼來源:ConnectionSet.cs

示例13: getOrdersDao

 public override IOrdersDao getOrdersDao(AbstractConnection cxn)
 {
     return new VistaOrdersDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例14: getPharmacyDao

 public override IPharmacyDao getPharmacyDao(AbstractConnection cxn)
 {
     return new VistaPharmacyDao(cxn);
 }
開發者ID:ChristopherEdwards,項目名稱:MDWS,代碼行數:4,代碼來源:XDaoFactory.cs

示例15: getDao

 public abstract object getDao(string daoName, AbstractConnection c);
開發者ID:OSEHRA,項目名稱:mdo,代碼行數:1,代碼來源:ConnectionSet.cs


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