Subversion Repository Public Repository

Pharmacy_09_03_18

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

import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TAccount;
import com.bestray.healthcarecommonutil.vo.TCCodeValues;
import com.bestray.healthcarecommonutil.vo.TEncounterProcedure;
import com.bestray.healthcarecommonutil.vo.TEncounterTreatmentSession;
import com.bestray.healthcarecommonutil.vo.TGroupMaster;
import com.bestray.healthcarecommonutil.vo.TMyFav;
import com.bestray.healthcarecommonutil.vo.TPatientEncounter;
import java.util.List;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;

/**
 *
 * @author user3
 */
public interface MyFavService {

    public void saveMyFavDiagnosis(List<TMyFav> favdiaglist)throws ProcessingException;

    public List<TMyFav> getFavDiagByAccount(TAccount useracc,String type)throws ProcessingException;

    public List<TCCodeValues> getAllTreatmentList()throws ProcessingException;
    
    public void deleteFavList(Long Id,String type) throws ProcessingException ;
    
    public List<TGroupMaster> getAllGroupList() throws ProcessingException;
    
    public List<TEncounterProcedure> getAllTreatmentsByEncounter(TPatientEncounter encounter)throws ProcessingException;

    public List<TEncounterTreatmentSession> getAllSessionByTreatment(TEncounterProcedure encProcedure)throws ProcessingException;;
    
    public void UpdateTreatmentSession(TEncounterTreatmentSession encounterTreatmentSession)throws ProcessingException,HibernateOptimisticLockingFailureException;
    
}

Commits for Pharmacy_09_03_18/Dr Gyana ProjectSpace/DrGyanaCommonUtil/src/main/java/com/bestray/healthcarecommonutil/service/MyFavService.java

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