Subversion Repositories SmartDukaan

Rev

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

Rev 21790 Rev 21801
Line 1... Line 1...
1
package com.spice.profitmandi.service.pricing;
1
package com.spice.profitmandi.service.pricing;
2
 
2
 
3
import java.util.List;
-
 
4
import java.util.Map;
-
 
5
 
-
 
6
import com.spice.profitmandi.dao.entity.dtr.Retailer;
-
 
7
import com.spice.profitmandi.dao.entity.fofo.Tag;
-
 
8
import com.spice.profitmandi.dao.entity.fofo.TagListing;
-
 
9
 
-
 
10
public interface PricingService {
3
public interface PricingService {
11
	//will list all active tags only
4
	//will list all active tags only
12
	List<Tag> listTags();
5
	/*List<Tag> listTags();
13
 
6
 
14
	//will list all active tags only
7
	//will list all active tags only
15
	List<Tag> listAllTags();
8
	List<Tag> listAllTags();
16
	
9
	
17
	//will list skus that are active and latest
10
	//will list skus that are active and latest
Line 27... Line 20...
27
	
20
	
28
	
21
	
29
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
22
	Map<Integer, Float> getPriceForFofo(int fofoId, String pinCode, List<Integer> itemIds);
30
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
23
	float getPriceForFofo(int fofoId, String pinCode, int itemId) throws Exception;
31
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
24
	Map<Integer, Float> getPriceForPinCode(String pinCode, List<Integer> itemIds);
32
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;
25
	float getPriceForPinCode(String pinCode, int itemId) throws Exception;*/
33
	
26
	
-
 
27
	public float getPrice(int itemId, int retailerId);
34
}
28
}