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


C# dao.ConnectionSet類代碼示例

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


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


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