Ejemplo n.º 1
0
        void INodeManager.Load(ConnectionSet connectionSet)
        {
            ConnectionSet setToUpdate = null;

            foreach (ConnectionSet set in Connections)
            {
                if (set.ConnectionType.Equals(connectionSet.ConnectionType))
                {
                    setToUpdate = set;

                    break;
                }
            }

            if (setToUpdate != null)
            {
                Connections.Remove(setToUpdate);
            }

            Connections.Add(connectionSet);
        }
Ejemplo n.º 2
0
 public IndexedHashtable getAutopsyReport(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getAutopsyReport", new object[] { }));
 }
Ejemplo n.º 3
0
 public IndexedHashtable getTestDescription(ConnectionSet cxns, string identifierString)
 {
     return(cxns.query(DAO_NAME, "getTestDescription", new object[] { identifierString }));
 }
Ejemplo n.º 4
0
        public static IndexedHashtable getFluRelatedProblemList(ConnectionSet cxns)
        {
            List <string> fluCodes = loadFluCodes();

            return(cxns.query(DAO_NAME, "getFluRelatedProblemList", new object[] { fluCodes }));
        }
Ejemplo n.º 5
0
 public IndexedHashtable getBloodTransfusionReport(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query(DAO_NAME, "getBloodTransfusionReport", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 6
0
 public static IndexedHashtable getNhinData(ConnectionSet cxns, string types = null, string validTypes = null)
 {
     return(cxns.query(DAO_NAME, "getNhinData", new object[] { types, validTypes }));
 }
Ejemplo n.º 7
0
 public static IndexedHashtable getRadiologyReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query("IRadiologyDao", "getRadiologyReports", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 8
0
 public static IndexedHashtable getUnitDoseMeds(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getUnitDoseMeds", new object[] { }));
 }
Ejemplo n.º 9
0
 public static IndexedHashtable getOutpatientRxProfile(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getOutpatientRxProfile", new object[] { }));
 }
Ejemplo n.º 10
0
 public IndexedHashtable getMedsAdminLog(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query(DAO_NAME, "getMedsAdminLog", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 11
0
 void IRelationshipManager.Load(ConnectionSet connectionSet)
 {
     Connections.Add(connectionSet);
 }
Ejemplo n.º 12
0
 public IndexedHashtable getOtherMeds(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getOtherMeds", new object[] { }));
 }
Ejemplo n.º 13
0
 public static IndexedHashtable getOrdersForPatient(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getOrdersForPatient", new object[] { }));
 }
Ejemplo n.º 14
0
 public IndexedHashtable getInpatientMoves(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getInpatientMoves", new object[] { }));
 }
Ejemplo n.º 15
0
 public IndexedHashtable getFutureAppointments(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getFutureAppointments", new object[] { }));
 }
Ejemplo n.º 16
0
 public static IndexedHashtable getImmunizations(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query(DAO_NAME, "getImmunizations", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 17
0
 public static IndexedHashtable getHealthSummary(ConnectionSet cxns, MdoDocument hs)
 {
     return(cxns.query(DAO_NAME, "getHealthSummary", new object[] { hs }));
 }
Ejemplo n.º 18
0
 public IndexedHashtable getDiscontinueReasons(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getDiscontinueReasons", new object[] { }));
 }
Ejemplo n.º 19
0
 public static IndexedHashtable getPatientRecord(ConnectionSet cxns, string validTypes)
 {
     return(cxns.query(DAO_NAME, "getPatientRecord", new object[1] {
         validTypes
     }));
 }
Ejemplo n.º 20
0
 public static IndexedHashtable getImoMeds(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getInpatientForOutpatientMeds", new object[] { }));
 }
Ejemplo n.º 21
0
 public static IndexedHashtable getProblemList(ConnectionSet cxns, string type)
 {
     return(cxns.query(DAO_NAME, "getProblemList", new object[] { type }));
 }
Ejemplo n.º 22
0
 public static IndexedHashtable getSurgeryReports(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getSurgeryReports", new object[] { false }));
 }
Ejemplo n.º 23
0
 public IndexedHashtable getMicrobiologyReports(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query(DAO_NAME, "getMicrobiologyReports", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 24
0
 public static IndexedHashtable getSurgeryReports(ConnectionSet cxns, bool fWithText)
 {
     return(cxns.query(DAO_NAME, "getSurgeryReports", new object[] { fWithText }));
 }
Ejemplo n.º 25
0
 public IndexedHashtable getElectronMicroscopyReport(ConnectionSet cxns, string fromDate, string toDate, int nrpts)
 {
     return(cxns.query(DAO_NAME, "getElectronMicroscopyReport", new object[] { fromDate, toDate, nrpts }));
 }
Ejemplo n.º 26
0
 public IndexedHashtable getHealthSummaryList(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getHealthSummaryList", new object[] { }));
 }
Ejemplo n.º 27
0
 public IndexedHashtable getTests(ConnectionSet cxns, string target)
 {
     return(cxns.query(DAO_NAME, "getTests", new object[] { target }));
 }
Ejemplo n.º 28
0
 public IndexedHashtable getHealthSummaryTitle(ConnectionSet cxns, string summaryId)
 {
     return(cxns.query(DAO_NAME, "getHealthSummaryTitle", new object[] { summaryId }));
 }
Ejemplo n.º 29
0
 public static IndexedHashtable getVitalSigns(ConnectionSet cxns)
 {
     return(cxns.query(DAO_NAME, "getVitalSigns", new object[] { }));
 }
Ejemplo n.º 30
0
 public static IndexedHashtable getAdHocHealthSummaryByDisplayName(ConnectionSet cxns, string displayName)
 {
     return(cxns.query(DAO_NAME, "getAdHocHealthSummaryByDisplayName", new object[] { displayName }));
 }
Ejemplo n.º 31
0
 void IRelationshipManager.Load(ConnectionSet connectionSet)
 {
     Connections.Add(connectionSet);
 }
Ejemplo n.º 32
0
 public IndexedHashtable getAppointments(ConnectionSet cxns, int pastDays, int futureDays)
 {
     return(cxns.query(DAO_NAME, "getAppointments", new object[] { pastDays, futureDays }));
 }