Subversion Repositories SmartDukaan

Rev

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

Rev 23365 Rev 23880
Line 5... Line 5...
5
 
5
 
6
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
7
 
7
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.model.PaymentOptionIdStatus;
9
import com.spice.profitmandi.common.model.PaymentOptionIdStatus;
-
 
10
import com.spice.profitmandi.dao.entity.fofo.PaymentOption;
10
 
11
 
11
@Service
12
@Service
12
public interface PaymentOptionService {
13
public interface PaymentOptionService {
-
 
14
	public List<PaymentOption> getPaymentOptionsByFofoId(int fofoId);
13
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
15
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
14
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
16
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
15
	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;
16
}
18
}