Subversion Repositories SmartDukaan

Rev

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

Rev 23880 Rev 24248
Line 13... Line 13...
13
public interface PaymentOptionService {
13
public interface PaymentOptionService {
14
	public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId);
14
	public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId);
15
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
15
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
16
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
16
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
17
	public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;
17
	public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;
-
 
18
	public float getTotalInvestment(int fofoId) throws ProfitMandiBusinessException;
18
}
19
}