예제 #1
0
파일: ToolsApi.cs 프로젝트: OSEHRA/mdo
 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
0
파일: ClinicalApi.cs 프로젝트: OSEHRA/mdo
 public static IndexedHashtable getNhinData(ConnectionSet cxns, string types = null, string validTypes = null)
 {
     return cxns.query(DAO_NAME, "getNhinData", new object[] { types, validTypes });
 }
예제 #3
0
파일: ConnectionSet.cs 프로젝트: OSEHRA/mdo
 public QueryTemplate(ConnectionSet cset)
 {
     myCset = cset;
 }
예제 #4
0
파일: ConnectionSet.cs 프로젝트: OSEHRA/mdo
 public DisconnectRemotesQuery(ConnectionSet cset)
     : base(cset)
 {
 }
예제 #5
0
파일: ConnectionSet.cs 프로젝트: OSEHRA/mdo
 public DisconnectAllQuery(ConnectionSet cset)
     : base(cset)
 {
 }
예제 #6
0
파일: ChemHemReport.cs 프로젝트: OSEHRA/mdo
 // 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
0
 public IndexedHashtable getAppointments(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getAppointments", new object[] { });
 }
예제 #8
0
 public IndexedHashtable getAdmissions(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getAdmissions", new object[] { });
 }
예제 #9
0
파일: EncounterApi.cs 프로젝트: OSEHRA/mdo
 public IndexedHashtable getMentalHealthVisits(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getMentalHealthVisits", new object[] { });
 }
예제 #10
0
파일: NoteApi.cs 프로젝트: OSEHRA/mdo
 public IndexedHashtable getNoteTitles(ConnectionSet cxns, String target, String direction)
 {
     return cxns.query(DAO_NAME, "getNoteTitles", new object[] { target, direction });
 }
예제 #11
0
파일: NoteApi.cs 프로젝트: OSEHRA/mdo
 public IndexedHashtable getNotes(ConnectionSet cxns, String fromDate, String toDate, int nNotes)
 {
     return cxns.query(DAO_NAME, "getNotes", new object[] { fromDate, toDate, nNotes });
 }
예제 #12
0
파일: NoteApi.cs 프로젝트: OSEHRA/mdo
 public IndexedHashtable getCrisisNotes(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return cxns.query(DAO_NAME, "getCrisisNotes", new object[] { fromDate, toDate, nrpts });
 }
예제 #13
0
파일: VitalSign.cs 프로젝트: OSEHRA/mdo
 public static IndexedHashtable getLatestVitalSigns(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getLatestVitalSigns", new object[] { });
 }
 public static IndexedHashtable getMentalHealthInstrumentsForPatient(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getMentalHealthInstrumentsForPatient", new object[] { });
 }
예제 #15
0
파일: ClinicalApi.cs 프로젝트: OSEHRA/mdo
 public static IndexedHashtable getPatientRecord(ConnectionSet cxns, string validTypes)
 {
     return cxns.query(DAO_NAME, "getPatientRecord", new object[1] { validTypes });
 }
예제 #16
0
 public IndexedHashtable getStayMovementsByDateRange(ConnectionSet cxns, string fromDate, string toDate)
 {
     return cxns.query(DAO_NAME, "getStayMovementsByDateRange", new object[] { fromDate, toDate });
 }
예제 #17
0
 public IndexedHashtable getStayMovementsByPatient(ConnectionSet cxns, string dfn)
 {
     return cxns.query(DAO_NAME, "getStayMovementsByPatient", new object[] { dfn });
 }
예제 #18
0
 public IndexedHashtable getCareTeamReports(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getCareTeamReport", new object[] { });
 }
예제 #19
0
 public IndexedHashtable getAdmissionsReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return cxns.query(DAO_NAME, "getAdmissionsReport", new object[] { fromDate, toDate, nrpts });
 }
예제 #20
0
 public IndexedHashtable getDRGRecords(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getDRGRecords", new object[] { });
 }
예제 #21
0
 public IndexedHashtable getAppointments(ConnectionSet cxns, int pastDays, int futureDays)
 {
     return cxns.query(DAO_NAME, "getAppointments", new object[] { pastDays, futureDays });
 }
예제 #22
0
 public IndexedHashtable getInpatientMoves(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getInpatientMoves", new object[] { });
 }
예제 #23
0
파일: Consult.cs 프로젝트: OSEHRA/mdo
 public static IndexedHashtable getConsultsForPatient(ConnectionSet cxns)
 {
     return cxns.query(DAO_NAME, "getConsultsForPatient", new object[] { });
 }
예제 #24
0
 public IndexedHashtable getInpatientMoves(ConnectionSet cxns, string fromDate, string toDate, string iterLength)
 {
     return cxns.query(DAO_NAME, "getInpatientMoves", new object[] { fromDate, toDate, iterLength });
 }
예제 #25
0
파일: ConnectionSet.cs 프로젝트: OSEHRA/mdo
 public DisconnectQueryTemplate(ConnectionSet cset)
     : base(cset)
 {
 }
예제 #26
0
 public IndexedHashtable getInpatientMovesByCheckinId(ConnectionSet cxns, string checkinId)
 {
     return cxns.query(DAO_NAME, "getInpatientMovesByCheckinId", new object[] { checkinId });
 }
예제 #27
0
파일: ConnectionSet.cs 프로젝트: OSEHRA/mdo
 public QueryQuery(ConnectionSet cset)
     : base(cset)
 {
 }
예제 #28
0
 public IndexedHashtable getLocations(ConnectionSet cxns, string target, string direction)
 {
     return cxns.query(DAO_NAME, "lookupLocations", new object[] { target, direction });
 }
예제 #29
0
파일: Claim.cs 프로젝트: OSEHRA/mdo
 public static IndexedHashtable getClaimants(
     ConnectionSet cxns, 
     string lastName,
     string firstName,
     string middleName,
     string dob,
     Address addr,
     int maxrex)
 {
     return cxns.query(DAO_NAME, "getClaimants", new object[]
         { lastName,
           firstName,
           middleName,
           dob,
           addr,
           maxrex
         });
 }
예제 #30
0
 public IndexedHashtable getOutpatientEncounterReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return cxns.query(DAO_NAME, "getOutpatientEncounterReport", new object[] { fromDate, toDate, nrpts });
 }