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

import com.bestray.healthcarecommonutil.exception.DataAccessException;
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 MyFavDao {

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

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

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

    public List<TEncounterTreatmentSession> getAllSessionByTreatment(TEncounterProcedure encProcedure)throws DataAccessException;

    public void UpdateTreatmentSession(TEncounterTreatmentSession encounterTreatmentSession)throws DataAccessException,HibernateOptimisticLockingFailureException;
}

Commits for Pharmacy_09_03_18/Dr Gyana ProjectSpace/DrGyanaCommonUtil/src/main/java/com/bestray/healthcarecommonutil/dao/MyFavDao.java

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