Subversion Repositories SmartDukaan

Rev

Rev 4141 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4141 Rev 7049
Line 61... Line 61...
61
	
61
	
62
	public List<Payment> getPaymentForTxn(long merchantTxnId){
62
	public List<Payment> getPaymentForTxn(long merchantTxnId){
63
		return paymentMapper.getPaymentForTxn(merchantTxnId);
63
		return paymentMapper.getPaymentForTxn(merchantTxnId);
64
	}
64
	}
65
	
65
	
-
 
66
	public List<Payment> getPaymentForRechargeTxn(long merchantTxnId){
-
 
67
        return paymentMapper.getPaymentForRechargeTxn(merchantTxnId);
-
 
68
    }
-
 
69
	
66
	public Map<String, Float> getMinMaxPaymentAmount(){
70
	public Map<String, Float> getMinMaxPaymentAmount(){
67
		return paymentMapper.getMinMaxPaymentAmount();
71
		return paymentMapper.getMinMaxPaymentAmount();
68
	}
72
	}
69
}
73
}