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

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 ExpenditureMasterService {
    
    public void saveExpenditureMaster(TExpenditureMaster expenditureMaster)throws ProcessingException,HibernateOptimisticLockingFailureException;
    
     public List<TExpenditureMaster> getAllExpenditure() throws ProcessingException;
     
     public int numberOfExpenditureRecords(String expr)throws ProcessingException;
     
     public Vector<Vector<String>> getExpenditureList(String expr,int min,int max)throws ProcessingException;
     
     public TExpenditureMaster getExpenditureValues(Long expenditureId)throws ProcessingException;
     
      public void deleteExpenditureMaster(Long expenditureId)throws ProcessingException,IllegalArgumentException;
      
     public List<TExpenditureMaster> getAllExpenditureByMonth_Year(String month,int year) throws ProcessingException;
     
      public List<TExpenditureMaster> getAllExpenditureByDate(Date expenditureDate)throws ProcessingException;
}

Commits for Satyam/AuroCareHealthCareInPatient/src/main/java/com/bestray/healthcareinpatient/service/ExpenditureMasterService.java

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