Esempio n. 1
0
        public Adt[] getInpatientMoves(AbstractConnection cxn)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getInpatientMoves());
        }
Esempio n. 2
0
        public Appointment[] getFutureAppointments(AbstractConnection cxn)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getFutureAppointments());
        }
Esempio n. 3
0
        public string getAppointmentText(AbstractConnection cxn, string apptId)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getAppointmentText(apptId));
        }
Esempio n. 4
0
        public Visit[] getVisits(AbstractConnection cxn, string fromDate, string toDate)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getVisits(fromDate, toDate));
        }
Esempio n. 5
0
        public Appointment[] getAppointments(AbstractConnection cxn, int pastDays, int futureDays)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getAppointments(pastDays, futureDays));
        }
Esempio n. 6
0
        public Drg[] getDRGRecords(AbstractConnection cxn)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getDRGRecords());
        }
Esempio n. 7
0
        public InpatientStay[] getAdmissions(AbstractConnection cxn)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getAdmissions());
        }
Esempio n. 8
0
        public InpatientStay[] getStaysForWard(AbstractConnection cxn, string wardId)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getStaysForWard(wardId));
        }
Esempio n. 9
0
        public HospitalLocation[] getWards(AbstractConnection cxn)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getWards());
        }
Esempio n. 10
0
        public HospitalLocation[] getLocations(AbstractConnection cxn, string target, string direction)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.lookupLocations(target, direction));
        }
Esempio n. 11
0
        public Adt[] getInpatientMovesByCheckinId(AbstractConnection cxn, string checkinId)
        {
            IEncounterDao dao = (IEncounterDao)cxn.getDao(DAO_NAME);

            if (dao == null)
            {
                return(null);
            }
            return(dao.getInpatientMovesByCheckinId(checkinId));
        }
Esempio n. 12
0
 public ImagingExam registerExam(AbstractConnection cxn,
                                 String orderId,
                                 String examDateTime,
                                 String examCategory,
                                 String hospitalLocation,
                                 String ward,
                                 String service,
                                 String technologistComment)
 {
     return(((IRadiologyDao)cxn.getDao(_radiologyDao)).registerExam(orderId, examDateTime, examCategory, hospitalLocation, ward, service, technologistComment));
 }
Esempio n. 13
0
 public NoteResult writeNote(
     AbstractConnection cxn,
     string titleId,
     Encounter encounter,
     string text,
     string authorId,
     string cosignerId,
     string consultId,
     string prfId)
 {
     return(((INoteDao)cxn.getDao(DAO_NAME)).writeNote(
                titleId, encounter, text, authorId, cosignerId, consultId, prfId));
 }
Esempio n. 14
0
 public Patient[] getPatientsByWard(AbstractConnection cxn, string wardId)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsByWard(wardId));
 }
Esempio n. 15
0
 public Patient[] getPatientsByClinic(AbstractConnection cxn, string clinicId)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsByClinic(clinicId));
 }
Esempio n. 16
0
 /// <summary>
 /// Get patient identifiers from the treating facility file at a single Vista (typically the base connection)
 /// </summary>
 /// <param name="cxn">Typically a VistaConnection</param>
 /// <param name="pid">Patient ID - typically a DFN</param>
 /// <returns>Dictionary of patient identifiers where key is the site ID and value is the patient ID at that site</returns>
 public Dictionary <string, string> getTreatingFacilityIds(AbstractConnection cxn, string pid)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getTreatingFacilityIds(pid));
 }
Esempio n. 17
0
 public Patient[] matchByNameCityState(AbstractConnection cxn, string name, string city, string state)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).matchByNameCityState(name, city, state));
 }
Esempio n. 18
0
 public StringDictionary getPatientTypes(AbstractConnection cxn)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientTypes());
 }
Esempio n. 19
0
 public RatedDisability[] getRatedDisabiliities(AbstractConnection cxn, string pid)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getRatedDisabilities(pid));
 }
Esempio n. 20
0
 public string patientInquiry(AbstractConnection cxn, string pid)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).patientInquiry(pid));
 }
Esempio n. 21
0
 public Patient[] match(AbstractConnection cxn, string target)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).match(target));
 }
Esempio n. 22
0
 public Patient[] getPatientsByClinic(AbstractConnection cxn, string clinicId, string fromDate, string toDate)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsByClinic(clinicId, fromDate, toDate));
 }
Esempio n. 23
0
 public Patient select(AbstractConnection cxn, string pid)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).select(pid));
 }
Esempio n. 24
0
 public Patient[] getPatientsByTeam(AbstractConnection cxn, string teamId)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsByTeam(teamId));
 }
Esempio n. 25
0
 public Patient[] getPatientsBySpecialty(AbstractConnection cxn, string specialtyId)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsBySpecialty(specialtyId));
 }
Esempio n. 26
0
 public OEF_OIF[] getOefOif(AbstractConnection cxn)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getOefOif());
 }
Esempio n. 27
0
 public Patient[] getPatientsByProvider(AbstractConnection cxn, string duz)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientsByProvider(duz));
 }
Esempio n. 28
0
 public void addHomeDate(AbstractConnection cxn, Patient patient)
 {
     ((IPatientDao)cxn.getDao(DAO_NAME)).addHomeData(patient);
 }
Esempio n. 29
0
 public string getLocalPid(AbstractConnection cxn, string mpiPID)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getLocalPid(mpiPID));
 }
Esempio n. 30
0
 public PatientAssociate[] getPatientAssociates(AbstractConnection cxn, string pid)
 {
     return(((IPatientDao)cxn.getDao(DAO_NAME)).getPatientAssociates(pid));
 }