当前位置: 首页>>代码示例>>C#>>正文


C# ConnectionSet.query方法代码示例

本文整理汇总了C#中gov.va.medora.mdo.dao.ConnectionSet.query方法的典型用法代码示例。如果您正苦于以下问题:C# ConnectionSet.query方法的具体用法?C# ConnectionSet.query怎么用?C# ConnectionSet.query使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gov.va.medora.mdo.dao.ConnectionSet的用法示例。


在下文中一共展示了ConnectionSet.query方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ddrLister

 public IndexedHashtable ddrLister(
     ConnectionSet cxns,
     string file,
     string iens,
     string flds,
     string flags,
     string maxRex,
     string from,
     string part,
     string xref,
     string screen,
     string identifier)
 {
     object[] args = new object[]
     {
         file,iens,flds,flags,maxRex,from,part,xref,screen,identifier
     };
     return cxns.query("IToolsDao", "ddrLister", args);
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:19,代码来源:ToolsApi.cs

示例2: getHealthSummaryTitle

 public IndexedHashtable getHealthSummaryTitle(ConnectionSet cxns, string summaryId)
 {
     return cxns.query(DAO_NAME, "getHealthSummaryTitle", new object[] { summaryId });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs

示例3: getConsultsForPatient

 public static IndexedHashtable getConsultsForPatient(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getConsultsForPatient", new object[] { });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:Consult.cs

示例4: getAppointments

 public IndexedHashtable getAppointments(ConnectionSet cxns, int pastDays, int futureDays)
 {
     return cxns.query(DAO_NAME, "getAppointments", new object[] { pastDays, futureDays });
 }
开发者ID:ChristopherEdwards,项目名称:mdo,代码行数:4,代码来源:EncounterApi.cs

示例5: getAdmissionsReports

 public IndexedHashtable getAdmissionsReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return cxns.query(DAO_NAME, "getAdmissionsReport", new object[] { fromDate, toDate, nrpts });
 }
开发者ID:ChristopherEdwards,项目名称:mdo,代码行数:4,代码来源:EncounterApi.cs

示例6: getStayMovementsByPatient

 public IndexedHashtable getStayMovementsByPatient(ConnectionSet cxns, string dfn)
 {
     return cxns.query(DAO_NAME, "getStayMovementsByPatient", new object[] { dfn });
 }
开发者ID:ChristopherEdwards,项目名称:mdo,代码行数:4,代码来源:EncounterApi.cs

示例7: getOutpatientEncounterReports

 public IndexedHashtable getOutpatientEncounterReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return cxns.query(DAO_NAME, "getOutpatientEncounterReport", new object[] { fromDate, toDate, nrpts });
 }
开发者ID:ChristopherEdwards,项目名称:mdo,代码行数:4,代码来源:EncounterApi.cs

示例8: getInpatientMovesByCheckinId

 public IndexedHashtable getInpatientMovesByCheckinId(ConnectionSet cxns, string checkinId)
 {
     return cxns.query(DAO_NAME, "getInpatientMovesByCheckinId", new object[] { checkinId });
 }
开发者ID:ChristopherEdwards,项目名称:mdo,代码行数:4,代码来源:EncounterApi.cs

示例9: getMentalHealthInstrumentsForPatient

 public static IndexedHashtable getMentalHealthInstrumentsForPatient(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getMentalHealthInstrumentsForPatient", new object[] { });
 }
开发者ID:ChristopherEdwards,项目名称:MDWS,代码行数:4,代码来源:MentalHealthInstrumentAdministration.cs

示例10: getPatientRecord

 public static IndexedHashtable getPatientRecord(ConnectionSet cxns, string validTypes)
 {
     return cxns.query(DAO_NAME, "getPatientRecord", new object[1] { validTypes });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs

示例11: getNhinData

 public static IndexedHashtable getNhinData(ConnectionSet cxns, string types = null, string validTypes = null)
 {
     return cxns.query(DAO_NAME, "getNhinData", new object[] { types, validTypes });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs

示例12: getHealthSummary

 public static IndexedHashtable getHealthSummary(ConnectionSet cxns, MdoDocument hs)
 {
     return cxns.query(DAO_NAME, "getHealthSummary", new object[] { hs });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs

示例13: getFluRelatedProblemList

 public static IndexedHashtable getFluRelatedProblemList(ConnectionSet cxns)
 {
     List<string> fluCodes = loadFluCodes();
     return cxns.query(DAO_NAME, "getFluRelatedProblemList", new object[] { fluCodes });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:5,代码来源:ClinicalApi.cs

示例14: getAllergies

 public static IndexedHashtable getAllergies(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getAllergies", new object[] { });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs

示例15: getAdHocHealthSummaryByDisplayName

 public static IndexedHashtable getAdHocHealthSummaryByDisplayName(ConnectionSet cxns, string displayName)
 {
     return cxns.query(DAO_NAME, "getAdHocHealthSummaryByDisplayName", new object[] { displayName });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ClinicalApi.cs


注:本文中的gov.va.medora.mdo.dao.ConnectionSet.query方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。