Subversion Repositories SmartDukaan

Rev

Rev 23527 | Go to most recent revision | Details | 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;
6
import com.spice.profitmandi.common.model.RechargeRequest;
7
import com.spice.profitmandi.common.model.RechargeResponse;
8
 
9
@Service
10
public interface RechargeService {
11
	public RechargeResponse doRecharge(String rechargeApiHost, int rechargeApiPort, String authKey, String rechargeValidationApiHost, int rechargeValidationApiPort, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
12
	public RechargeResponse checkStatus(String rechargeApiHost, int rechargeApiPort, String authKey, int retailerId, String requestId) throws ProfitMandiBusinessException;
13
}