Subversion Repositories SmartDukaan

Rev

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

Rev 22101 Rev 22216
Line 1... Line 1...
1
package com.spice.profitmandi.service.pricing;
1
package com.spice.profitmandi.service.pricing;
2
 
2
 
3
import java.util.Map;
3
import java.util.Map;
4
import java.util.Set;
4
import java.util.Set;
5
 
5
 
-
 
6
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
7
import com.spice.profitmandi.dao.entity.dtr.GadgetCopsInsuranceCalc;
-
 
8
 
6
public interface PricingService {
9
public interface PricingService {
7
	//will list all active tags only
10
	//will list all active tags only
8
	/*List<Tag> listTags();
11
	/*List<Tag> listTags();
9
 
12
 
10
	//will list all active tags only
13
	//will list all active tags only
Line 25... Line 28...
25
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
28
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
26
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
29
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
27
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
30
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
28
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
31
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
29
	
32
	
30
	public Map<Integer, Float> getPrice(Set<Integer> itemIds, int retailerId);
33
	public Map<Integer, Float> getPrices(Set<Integer> itemIds, int retailerId);
31
	public Map<Integer, Float> getMopPrice(Set<Integer> itemIds, int retailerId);
34
	public Map<Integer, Float> getMopPrices(Set<Integer> itemIds, int retailerId);
-
 
35
	public Map<Float, GadgetCopsInsuranceCalc> getInsurancePrices(Set<Float> prices, String providerName) throws ProfitMandiBusinessException;
32
}
36
}