Rev 24248 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.order;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.PaymentOptionIdStatus;import com.spice.profitmandi.dao.entity.fofo.PaymentOption;import org.springframework.stereotype.Service;import java.util.List;import java.util.Map;@Servicepublic interface PaymentOptionService {public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId) throws ProfitMandiBusinessException;public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;public float getTotalInvestment(int fofoId) throws ProfitMandiBusinessException;}