Subversion Repository Public Repository

Aurocare_27_07_2018

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareemr.Service;

import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TAppointment;
import com.bestray.healthcarecommonutil.vo.TDepartmentMaster;
import com.bestray.healthcarecommonutil.vo.TDoctorInformation;
import com.bestray.healthcarecommonutil.vo.TEncounterAllergy;
import com.bestray.healthcarecommonutil.vo.TEncounterDiagnosis;
import com.bestray.healthcarecommonutil.vo.TEncounterHistoryVisit;
import com.bestray.healthcarecommonutil.vo.TEncounterMedication;
import com.bestray.healthcarecommonutil.vo.TEncounterProcedure;
import com.bestray.healthcarecommonutil.vo.TEncounterVitalSign;
import com.bestray.healthcarecommonutil.vo.TPatEncOrderResults;
import com.bestray.healthcarecommonutil.vo.TPatient;
import com.bestray.healthcarecommonutil.vo.TPatientEncounter;
import com.bestray.healthcarecommonutil.vo.TProcedureMaster;
import java.util.Date;
import java.util.List;
import javax.swing.JTable;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;

// TODO: Auto-generated Javadoc
/**
 * The Interface PatientEncounterService.
 *
 * @author user3
 */
public interface PatientEncounterService {

    public TPatientEncounter saveEncounter(TPatientEncounter encounter, JTable allergy_table, JTable medication_table,JTable diagnosis_table,JTable procedure_table,TEncounterVitalSign vitalsign,TEncounterHistoryVisit visitHistory,List<Long> removeprocids, List<Long> removediaglist, List<Long> removeallergylist)throws ProcessingException,HibernateOptimisticLockingFailureException,IllegalArgumentException;
    
    public List<TPatientEncounter> getEncounterDates(TPatient patientinfo)throws ProcessingException;
    
    public String countNumberOfVisit(TPatient patientinfo)throws ProcessingException;
    
    public TPatientEncounter getEncounterById(Long encid)throws ProcessingException;
    
    public TPatientEncounter getEncounterByAppoitment(TAppointment appointmentinfo)throws ProcessingException;
    
    public List<TPatEncOrderResults> getLabResultsByProcedureId(TEncounterProcedure encprocedure)throws ProcessingException;

    public List<TAppointment> getOPAppointmentListByDate(Date appointmentDate)throws ProcessingException;

    public List<TAppointment> getOPAppointmentListByDoctor(Date date, TDepartmentMaster departmentValues, TDoctorInformation DoctorDetails)throws ProcessingException;

    public List<TAppointment> getOPAppointmentListByDepartment(Date date, TDepartmentMaster departmentValues)throws ProcessingException;

    public TPatientEncounter saveEncounter(TPatientEncounter patientenc,TEncounterHistoryVisit vh,List<TEncounterAllergy> encallergy,TEncounterVitalSign vitalsigns,List<Long> removeallergylist,List<TEncounterProcedure> encprocedure,List<Long> removeproclist,List<TEncounterMedication> encmedication,List<TEncounterDiagnosis> encdiagnosis,List<Long> removediagnosislist)throws ProcessingException;

    public TEncounterHistoryVisit saveVisitHistoryEnc(TEncounterHistoryVisit vh, TPatientEncounter patencbyappoitornew)throws ProcessingException;

    public TEncounterAllergy getEncAllergyById(Long id)throws ProcessingException;

    public void saveProcedureMaster(TProcedureMaster procedure)throws ProcessingException;

    public TEncounterMedication getEncMedById(long id)throws ProcessingException;
}

Commits for Aurocare_27_07_2018/AuroCareEMR/src/main/java/com/bestray/healthcareemr/Service/PatientEncounterService.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000