Subversion Repositories SmartDukaan

Rev

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

Rev 23527 Rev 23560
Line 8... Line 8...
8
import com.spice.profitmandi.common.model.RechargeRequest;
8
import com.spice.profitmandi.common.model.RechargeRequest;
9
import com.spice.profitmandi.common.model.RechargeResponse;
9
import com.spice.profitmandi.common.model.RechargeResponse;
10
 
10
 
11
@Service
11
@Service
12
public interface RechargeService {
12
public interface RechargeService {
13
	public RechargeResponse doRecharge(RechargeCredential rechargeTransactionCredential, RechargeCredential rechargeValidationCredential, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
13
	public RechargeResponse doRecharge(RechargeCredential rechargeTransactionMobileCredential, RechargeCredential rechargeTransactionDthCredential, String rechargeValidationUrl, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
14
	public RechargeResponse checkStatus(RechargeCredential rechargeEnquiryCredential, int retailerId, String requestId) throws ProfitMandiBusinessException;
14
	public RechargeResponse checkStatus(RechargeCredential rechargeEnquiryCredential, int retailerId, String requestId) throws ProfitMandiBusinessException;
15
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
15
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
16
	public void updateRechargeCommission(int operatorId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
16
	public void updateRechargeCommission(int operatorId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
17
	public void addCommissionToWallet();
17
	public void addCommissionToWallet();
18
}
18
}