Subversion Repository Public Repository

Satyam

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

import com.bestray.healthcarecommonutil.exception.DataAccessException;
import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TExpenditureMaster;
import java.util.Date;
import java.util.List;
import java.util.Vector;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;

/**
 *
 * @author DELL
 */
public interface ExpenditureMasterDao {
  
   public void saveExpenditureMaster(TExpenditureMaster expenditureMaster)throws DataAccessException;
   
   public void updateExpenditureMaster(TExpenditureMaster expenditureMaster)throws DataAccessException,HibernateOptimisticLockingFailureException;
    
   public List<TExpenditureMaster> getAllExpenditure() throws DataAccessException;
   
   public int numberOfExpenditureRecords(String expr)throws DataAccessException;
   
    public Vector<TExpenditureMaster> getExpenditureList(String expr,int min,int max)throws DataAccessException;
    
    public TExpenditureMaster getExpenditureValues(Long expenditureId)throws DataAccessException;
    
     public void deleteExpenditureMaster(Long expenditureId)throws DataAccessException,IllegalArgumentException;
     
     public List<TExpenditureMaster> getAllExpenditureByMonth_Year(String month,int year) throws DataAccessException;
     
     public List<TExpenditureMaster> getAllExpenditureByDate(Date expenditureDate)throws DataAccessException;
}

Commits for Satyam/AuroCareHealthCareInPatient/src/main/java/com/bestray/healthcareinpatient/dao/ExpenditureMasterDao.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 20 Jul, 2018 05:59:17 +0000