Subversion Repositories SmartDukaan

Rev

Rev 32420 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32420 Rev 33247
Line 13... Line 13...
13
public interface PricingService {
13
public interface PricingService {
14
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
14
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
15
 
15
 
16
	List<Integer> getMopVoilatedRetailerIds();
16
	List<Integer> getMopVoilatedRetailerIds();
17
 
17
 
18
	public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId);
18
    public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;
-
 
19
 
19
	public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId);
20
    public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId) throws ProfitMandiBusinessException;
20
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
21
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
-
 
22
 
21
	public List<Integer> getTagsIdsByRetailerId(int retailerId); 
23
    public List<Integer> getTagsIdsByRetailerId(int retailerId) throws ProfitMandiBusinessException;
22
}
24
}