Subversion Repositories SmartDukaan

Rev

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

Rev 25383 Rev 26522
Line 10... Line 10...
10
import com.spice.profitmandi.common.model.CustomRetailer;
10
import com.spice.profitmandi.common.model.CustomRetailer;
11
import com.spice.profitmandi.common.model.MapWrapper;
11
import com.spice.profitmandi.common.model.MapWrapper;
12
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
12
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
13
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
13
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
14
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
14
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
-
 
15
import com.spice.profitmandi.dao.entity.user.LoginRequestResponseModel;
15
 
16
 
16
@Service
17
@Service
17
public interface RetailerService {
18
public interface RetailerService {
18
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
19
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
19
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
20
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
Line 26... Line 27...
26
	public List<MapWrapper<Integer, String>> getAllFofoRetailerIdNameList();
27
	public List<MapWrapper<Integer, String>> getAllFofoRetailerIdNameList();
27
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap(Set<Integer> retailerIds);
28
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap(Set<Integer> retailerIds);
28
	Map<Integer, String> getAllFofoRetailerIdNameMap(List<Integer> storeIds);
29
	Map<Integer, String> getAllFofoRetailerIdNameMap(List<Integer> storeIds);
29
	Map<Integer, String> getAllFofoRetailerIdNameMap();
30
	Map<Integer, String> getAllFofoRetailerIdNameMap();
30
	Map<Integer, CustomRetailer> getFofoRetailerUserId(List<Integer> fofoIds)throws ProfitMandiBusinessException;
31
	Map<Integer, CustomRetailer> getFofoRetailerUserId(List<Integer> fofoIds)throws ProfitMandiBusinessException;
-
 
32
	LoginRequestResponseModel registerWebUser(LoginRequestResponseModel loginRequestModel)
-
 
33
			throws ProfitMandiBusinessException;
31
}
34
}