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