Rev 22580 | Rev 22925 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.pricing;import java.util.List;import java.util.Map;import java.util.Set;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.PriceModel;import com.spice.profitmandi.dao.entity.dtr.GadgetCopsInsuranceCalc;@Servicepublic interface PricingService {public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);public Map<Integer, PriceModel> getMopPrices(Set<Integer> itemIds, int retailerId);public Map<Integer, Float> getPurchasePrices(Set<Integer> itemIds, int retailerId);public Map<Integer, PriceModel> getPurchasePriceMopPriceNotFound(Set<Integer> itemIds, int retailerId);public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;public List<Integer> getTagsIdsByRetailerId(int retailerId) throws Throwable;}