Subversion Repositories SmartDukaan

Rev

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

Rev 22925 Rev 28404
Line 12... Line 12...
12
 
12
 
13
@Service
13
@Service
14
public interface PricingService {
14
public interface PricingService {
15
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
15
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
16
	public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId);
16
	public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId);
17
	public Map<Integer, Float> getPurchasePrices(Set<Integer> itemIds, int retailerId);
-
 
18
	public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId);
17
	public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId);
19
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
18
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
20
	public List<Integer> getTagsIdsByRetailerId(int retailerId); 
19
	public List<Integer> getTagsIdsByRetailerId(int retailerId); 
21
}
20
}