Subversion Repositories SmartDukaan

Rev

Rev 23527 | Rev 23574 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.recharge;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.common.model.RechargeCommissionRequest;
import com.spice.profitmandi.common.model.RechargeCredential;
import com.spice.profitmandi.common.model.RechargeRequest;
import com.spice.profitmandi.common.model.RechargeResponse;

@Service
public interface RechargeService {
        public RechargeResponse doRecharge(RechargeCredential rechargeTransactionMobileCredential, RechargeCredential rechargeTransactionDthCredential, String rechargeValidationUrl, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
        public RechargeResponse checkStatus(RechargeCredential rechargeEnquiryCredential, int retailerId, String requestId) throws ProfitMandiBusinessException;
        public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
        public void updateRechargeCommission(int operatorId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
        public void addCommissionToWallet();
}