Subversion Repositories SmartDukaan

Rev

Rev 23527 | Rev 23574 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23504 ashik.ali 1
package com.spice.profitmandi.service.recharge;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
23527 ashik.ali 6
import com.spice.profitmandi.common.model.RechargeCommissionRequest;
7
import com.spice.profitmandi.common.model.RechargeCredential;
23504 ashik.ali 8
import com.spice.profitmandi.common.model.RechargeRequest;
9
import com.spice.profitmandi.common.model.RechargeResponse;
10
 
11
@Service
12
public interface RechargeService {
23560 ashik.ali 13
	public RechargeResponse doRecharge(RechargeCredential rechargeTransactionMobileCredential, RechargeCredential rechargeTransactionDthCredential, String rechargeValidationUrl, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
23527 ashik.ali 14
	public RechargeResponse checkStatus(RechargeCredential rechargeEnquiryCredential, int retailerId, String requestId) throws ProfitMandiBusinessException;
15
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
16
	public void updateRechargeCommission(int operatorId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
17
	public void addCommissionToWallet();
23504 ashik.ali 18
}