Subversion Repositories SmartDukaan

Rev

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

Rev 23781 Rev 23880
Line 1... Line 1...
1
package com.spice.profitmandi.service.user;
1
package com.spice.profitmandi.service.user;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
import java.util.Map;
4
import java.util.Map;
-
 
5
import java.util.Set;
5
 
6
 
6
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
7
 
8
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.model.CustomRetailer;
10
import com.spice.profitmandi.common.model.CustomRetailer;
Line 19... Line 20...
19
	public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
20
	public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
20
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
21
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
21
	public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
22
	public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
22
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap();
23
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap();
23
	public List<MapWrapper<Integer, String>> getFofoRetailerIdEmailIdMap();
24
	public List<MapWrapper<Integer, String>> getFofoRetailerIdEmailIdMap();
-
 
25
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap(Set<Integer> retailerIds);
24
}
26
}