Subversion Repositories SmartDukaan

Rev

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

Rev 23627 Rev 23886
Line 1... Line 1...
1
package com.spice.profitmandi.service.recharge;
1
package com.spice.profitmandi.service.recharge;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
3
import java.util.List;
4
import java.util.List;
4
import java.util.Map;
5
import java.util.Map;
5
 
6
 
6
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
7
 
8
 
Line 23... Line 24...
23
					throws ProfitMandiBusinessException;
24
					throws ProfitMandiBusinessException;
24
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
25
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
25
	public void updateRechargeCommission(int operatorId, int providerId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
26
	public void updateRechargeCommission(int operatorId, int providerId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
26
	public void addCommissionToWallet();
27
	public void addCommissionToWallet();
27
	public float checkBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential, int providerId, ProviderBalanceFrom providerBalanceFrom) throws ProfitMandiBusinessException;
28
	public float checkBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential, int providerId, ProviderBalanceFrom providerBalanceFrom) throws ProfitMandiBusinessException;
28
	public void createRechargeProviderCreditWallet(int providerId, float amount, String receiveDateTimeString) throws ProfitMandiBusinessException;
29
	public void createRechargeProviderCreditWallet(int providerId, float amount, LocalDateTime providerWalletCreditTimestamp) throws ProfitMandiBusinessException;
29
	public List<Map<String, Object>> getRechargeProvidersBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential) throws ProfitMandiBusinessException;
30
	public List<Map<String, Object>> getRechargeProvidersBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential) throws ProfitMandiBusinessException;
30
}
31
}