Subversion Repositories SmartDukaan

Rev

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

Rev 21801 Rev 21870
Line 1... Line 1...
1
package com.spice.profitmandi.service.pricing;
1
package com.spice.profitmandi.service.pricing;
2
 
2
 
-
 
3
import java.util.Set;
-
 
4
 
3
public interface PricingService {
5
public interface PricingService {
4
	//will list all active tags only
6
	//will list all active tags only
5
	/*List<Tag> listTags();
7
	/*List<Tag> listTags();
6
 
8
 
7
	//will list all active tags only
9
	//will list all active tags only
Line 22... Line 24...
22
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
24
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
23
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
25
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
24
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
26
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
25
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
27
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
26
	
28
	
27
	public float getPrice(int itemId, int retailerId);
29
	public float getPrice(Set<Integer> itemIds, int retailerId);
28
}
30
}