Subversion Repository Public Repository

TransPort_Tracking

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

import com.bestray.transtracking.dto.LoanMaintenanceSearchDTO;
import com.bestray.trastrack.domain.Employee;
import com.bestray.trastrack.domain.LoanCalc;
import com.bestray.trastrack.domain.LoanList;
import com.bestray.trastrack.domain.LoanPaid;
import com.bestray.trastrack.domain.LoanReceiving;
import com.bestray.trastrack.domain.Party;
import com.bestray.trastrack.domain.ReceiptVoucher;
import java.util.List;

/**
 *
 * @author user3
 */
public interface ReceiptVoucherDao {
    
    public List<Party> findAllPartys()throws Exception;
    
    public List<Employee> findAllEmployees()throws Exception;

    public void saveReceiptVoucher(ReceiptVoucher receipt)throws Exception;

    public ReceiptVoucher getTotalPartyBalance(Long partyId)throws Exception;

    public List<LoanList> findAllLoanNames()throws Exception;

    public LoanCalc getTotalLoanBalance(Long loanId)throws Exception;

    public Long saveLoanPayment(LoanPaid paying)throws Exception;

    public Long saveLoanReceived(LoanReceiving receiving)throws Exception;

    public List<LoanPaid> getSearchResults(LoanMaintenanceSearchDTO searchpaid)throws Exception;

    public List<LoanReceiving> getSearchReceivedResults(LoanMaintenanceSearchDTO searchrecieved)throws Exception;

    public List<LoanPaid> getSearchPaidResultsDateRange(LoanMaintenanceSearchDTO searchpaid)throws Exception;

    public List<LoanReceiving> getSearchReceivedResultsDateRange(LoanMaintenanceSearchDTO searchrecieved)throws Exception;
    
    public void delete(Long id)throws Exception;

    public void deleteReceived(Long id)throws Exception;

    public LoanReceiving findById(Long id)throws Exception;

    public Long updateLoanReceived(LoanReceiving receiving)throws Exception;

    public Long updateLoanPayment(LoanPaid paying)throws Exception;

    public LoanPaid findByPaidId(Long id)throws Exception;
    
    public LoanList findLoanDetails(Long loanId) throws Exception;
    
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/transtracking/dao/ReceiptVoucherDao.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Sat 28 Jul, 2018 05:29:14 +0000