Subversion Repositories SmartDukaan

Rev

Rev 23880 | Go to most recent revision | Details | 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;
10
 
11
@Service
12
public interface PaymentOptionService {
13
	public Map<String, Object> getFofoPartnerPaymentOption(int fofoId);
14
	public Map<String, Object> createAndGetPaymentOption(String name) throws ProfitMandiBusinessException;
15
	public Map<String, Object> addPaymentOptionToFofoPartner(int fofoId, List<PaymentOptionIdStatus> paymentOptionIdStatuses) throws ProfitMandiBusinessException;
16
}