Subversion Repositories SmartDukaan

Rev

Rev 23880 | Go to most recent revision | 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 java.util.List;
4
import java.util.Map;
5
 
6
import org.springframework.stereotype.Service;
7
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.model.PaymentOptionIdStatus;
23880 ashik.ali 10
import com.spice.profitmandi.dao.entity.fofo.PaymentOption;
23365 ashik.ali 11
 
12
@Service
13
public interface PaymentOptionService {
23880 ashik.ali 14
	public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId);
23365 ashik.ali 15
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
16
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
17
	public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;
24248 govind 18
	public float getTotalInvestment(int fofoId) throws ProfitMandiBusinessException;
23365 ashik.ali 19
}