Subversion Repository Public Repository

KNH_Project

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
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.labinformationsystem.service;

import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TEncounterProcedure;
import com.bestray.healthcarecommonutil.vo.TPatEncOrderResults;
import com.bestray.healthcarecommonutil.vo.TPatEncOrderSpecimen;
import com.bestray.healthcarecommonutil.vo.TPatient;
import com.bestray.healthcarecommonutil.vo.TPatientEncounter;
import com.bestray.healthcarecommonutil.vo.TProcedureMaster;
import java.util.List;
import java.util.Vector;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;

/**
 *
 * @author User1
 */
public interface LabInformationService {

    public Vector<Vector<String>> getPrescribeOrderList(TPatient patient) throws ProcessingException;

    public Vector<Vector<String>> getComponentListByProcedure(TEncounterProcedure orderDetails,TPatientEncounter encounter)throws ProcessingException;

    public Long saveProcedureEncounter(TEncounterProcedure encounterProcedure)throws ProcessingException;

    public void deleteProcedureEncounter(TProcedureMaster procrdure, TPatientEncounter encounter)throws ProcessingException,IllegalArgumentException;

    public TEncounterProcedure getProcedureEncounterByID(Long ID)throws ProcessingException;

    public void upDateProcedureEncounter(TEncounterProcedure encounterProcedure)throws ProcessingException,HibernateOptimisticLockingFailureException;

    public void deleteProcedureEncounterDetailsByID(Long ID, TPatientEncounter encounter)throws ProcessingException;
    
    public List<TEncounterProcedure> getTodayPrescribeOrder(TPatient patient)throws ProcessingException;

    public Vector<Vector<String>> getPrescribeOrderToday(TPatient patient)throws ProcessingException;

    public List<TProcedureMaster> getAllPrescribeOrderForPatient(TPatient patient)throws ProcessingException;
    
    public List<TEncounterProcedure> getEncounterProcedureForPatient(TPatient patient,TProcedureMaster orderSelected) throws ProcessingException; 

    public List<TPatientEncounter> getEncounterDates(TPatient patient)throws ProcessingException;
    
    public List<TEncounterProcedure> findAllOrderListForCheckBoxTable(TPatient patient)throws ProcessingException;

    public TPatientEncounter saveNewEncForSelectedPatient(TPatientEncounter enc)throws ProcessingException,HibernateOptimisticLockingFailureException;

    public TPatientEncounter getencforlab(TPatient patient,String enctype)throws ProcessingException;

    public List<TEncounterProcedure> getPreviousLabTest(TPatient patient)throws ProcessingException;
    
    public List<TPatientEncounter> getAllClosedEncounters(TPatient patient) throws ProcessingException;
    
}

Commits for KNH_Project/LabInformationSystem/src/main/java/com/bestray/labinformationsystem/service/LabInformationService.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 13:29:42 +0000