• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# dao.ConnectionSet类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



ConnectionSet类属于gov.va.medora.mdo.dao命名空间,在下文中一共展示了ConnectionSet类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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: 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


示例3: QueryTemplate

 public QueryTemplate(ConnectionSet cset)
 {
     myCset = cset;
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ConnectionSet.cs


示例4: DisconnectRemotesQuery

 public DisconnectRemotesQuery(ConnectionSet cset)
     : base(cset)
 {
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ConnectionSet.cs


示例5: DisconnectAllQuery

 public DisconnectAllQuery(ConnectionSet cset)
     : base(cset)
 {
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:ConnectionSet.cs


示例6: getChemHemReports

 // Gets multiple reports from multiple sites
 public static IndexedHashtable getChemHemReports(ConnectionSet cxns, string fromDate, string toDate)
 {
     return cxns.query(DAO_NAME, "getChemHemReports", new object[] { fromDate, toDate });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:5,代码来源:ChemHemReport.cs


示例7: getAppointments

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


示例8: getAdmissions

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


示例9: getMentalHealthVisits

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


示例10: getNoteTitles

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


示例11: getNotes

 public IndexedHashtable getNotes(ConnectionSet cxns, String fromDate, String toDate, int nNotes)
 {
     return cxns.query(DAO_NAME, "getNotes", new object[] { fromDate, toDate, nNotes });
 }
开发者ID:OSEHRA,项目名称:mdo,代码行数:4,代码来源:NoteApi.cs


示例12: getCrisisNotes

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


示例13: getLatestVitalSigns

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


示例14: getMentalHealthInstrumentsForPatient

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


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


示例16: getStayMovementsByDateRange

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


示例17: getStayMovementsByPatient

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


示例18: getCareTeamReports

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


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


示例20: getDRGRecords

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



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# vista.VistaQuery类代码示例发布时间:2022-05-26
下一篇:
C# dao.AbstractConnection类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap