Subversion Repositories SmartDukaan

Rev

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

Rev 23509 Rev 23781
Line 5... Line 5...
5
 
5
 
6
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
7
 
7
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.model.CustomRetailer;
9
import com.spice.profitmandi.common.model.CustomRetailer;
-
 
10
import com.spice.profitmandi.common.model.MapWrapper;
10
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
11
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
11
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
12
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
12
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
13
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
13
 
14
 
14
@Service
15
@Service
Line 16... Line 17...
16
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
17
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
17
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
18
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
18
	public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
19
	public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
19
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
20
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
20
	public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
21
	public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
-
 
22
	public Map<Integer, String> getAllFofoRetailerIdEmailIdMap();
-
 
23
	public List<MapWrapper<Integer, String>> getFofoRetailerIdEmailIdMap();
21
}
24
}