Subversion Repositories SmartDukaan

Rev

Rev 24248 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23365 ashik.ali 1
package com.spice.profitmandi.service.order;
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.common.model.PaymentOptionIdStatus;
23880 ashik.ali 5
import com.spice.profitmandi.dao.entity.fofo.PaymentOption;
33248 ranu 6
import org.springframework.stereotype.Service;
23365 ashik.ali 7
 
33248 ranu 8
import java.util.List;
9
import java.util.Map;
10
 
23365 ashik.ali 11
@Service
12
public interface PaymentOptionService {
33248 ranu 13
    public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId) throws ProfitMandiBusinessException;
23365 ashik.ali 14
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
15
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
16
	public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;
24248 govind 17
	public float getTotalInvestment(int fofoId) throws ProfitMandiBusinessException;
23365 ashik.ali 18
}