本文整理汇总了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);
}
示例2: getNhinData
public static IndexedHashtable getNhinData(ConnectionSet cxns, string types = null, string validTypes = null)
{
return cxns.query(DAO_NAME, "getNhinData", new object[] { types, validTypes });
}
示例3: QueryTemplate
public QueryTemplate(ConnectionSet cset)
{
myCset = cset;
}
示例4: DisconnectRemotesQuery
public DisconnectRemotesQuery(ConnectionSet cset)
: base(cset)
{
}
示例5: DisconnectAllQuery
public DisconnectAllQuery(ConnectionSet cset)
: base(cset)
{
}
示例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 });
}
示例7: getAppointments
public IndexedHashtable getAppointments(ConnectionSet cxns)
{
return cxns.query(DAO_NAME, "getAppointments", new object[] { });
}
示例8: getAdmissions
public IndexedHashtable getAdmissions(ConnectionSet cxns)
{
return cxns.query(DAO_NAME, "getAdmissions", new object[] { });
}
示例9: getMentalHealthVisits
public IndexedHashtable getMentalHealthVisits(ConnectionSet cxns)
{
return cxns.query(DAO_NAME, "getMentalHealthVisits", new object[] { });
}
示例10: getNoteTitles
public IndexedHashtable getNoteTitles(ConnectionSet cxns, String target, String direction)
{
return cxns.query(DAO_NAME, "getNoteTitles", new object[] { target, direction });
}
示例11: getNotes
public IndexedHashtable getNotes(ConnectionSet cxns, String fromDate, String toDate, int nNotes)
{
return cxns.query(DAO_NAME, "getNotes", new object[] { fromDate, toDate, nNotes });
}
示例12: getCrisisNotes
public IndexedHashtable getCrisisNotes(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
{
return cxns.query(DAO_NAME, "getCrisisNotes", new object[] { fromDate, toDate, nrpts });
}
示例13: getLatestVitalSigns
public static IndexedHashtable getLatestVitalSigns(ConnectionSet cxns)
{
return cxns.query(DAO_NAME, "getLatestVitalSigns", new object[] { });
}
示例14: getMentalHealthInstrumentsForPatient
public static IndexedHashtable getMentalHealthInstrumentsForPatient(ConnectionSet cxns)
{
return cxns.query(DAO_NAME, "getMentalHealthInstrumentsForPatient", new object[] { });
}
示例15: getPatientRecord
public static IndexedHashtable getPatientRecord(ConnectionSet cxns, string validTypes)
{
return cxns.query(DAO_NAME, "getPatientRecord", new object[1] { validTypes });
}