Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21790 ashik.ali 1
package com.spice.profitmandi.service.pricing;
2
 
32420 amit.gupta 3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.common.model.PriceModel;
5
import com.spice.profitmandi.dao.entity.dtr.GadgetCopsInsuranceCalc;
6
import org.springframework.stereotype.Service;
7
 
22287 amit.gupta 8
import java.util.List;
21926 ashik.ali 9
import java.util.Map;
21870 ashik.ali 10
import java.util.Set;
11
 
22653 ashik.ali 12
@Service
21790 ashik.ali 13
public interface PricingService {
22216 ashik.ali 14
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
32420 amit.gupta 15
 
16
	List<Integer> getMopVoilatedRetailerIds();
17
 
33247 ranu 18
    public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;
19
 
20
    public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;
22216 ashik.ali 21
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
33247 ranu 22
 
23
    public List<Integer> getTagsIdsByRetailerId(int retailerId) throws ProfitMandiBusinessException;
21790 ashik.ali 24
}