Subversion Repositories SmartDukaan

Rev

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

Rev 21870 Rev 21926
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.Set;
4
import java.util.Set;
4
 
5
 
5
public interface PricingService {
6
public interface PricingService {
6
	//will list all active tags only
7
	//will list all active tags only
7
	/*List<Tag> listTags();
8
	/*List<Tag> listTags();
Line 24... Line 25...
24
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
25
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
25
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
26
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
26
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
27
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
27
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
28
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
28
	
29
	
29
	public float getPrice(Set<Integer> itemIds, int retailerId);
30
	public Map<Integer, Float> getPrice(Set<Integer> itemIds, int retailerId);
30
}
31
}