| 22980 |
ashik.ali |
1 |
package com.spice.profitmandi.service.user;
|
|
|
2 |
|
| 23329 |
ashik.ali |
3 |
import java.util.List;
|
| 22980 |
ashik.ali |
4 |
import java.util.Map;
|
| 23880 |
ashik.ali |
5 |
import java.util.Set;
|
| 22980 |
ashik.ali |
6 |
|
|
|
7 |
import org.springframework.stereotype.Service;
|
|
|
8 |
|
|
|
9 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 23509 |
amit.gupta |
10 |
import com.spice.profitmandi.common.model.CustomRetailer;
|
| 23781 |
ashik.ali |
11 |
import com.spice.profitmandi.common.model.MapWrapper;
|
| 23025 |
ashik.ali |
12 |
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
|
| 23329 |
ashik.ali |
13 |
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
|
| 23378 |
ashik.ali |
14 |
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
|
| 22980 |
ashik.ali |
15 |
|
|
|
16 |
@Service
|
|
|
17 |
public interface RetailerService {
|
|
|
18 |
public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
|
| 23025 |
ashik.ali |
19 |
public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
|
| 23955 |
govind |
20 |
public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName,UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
|
| 23329 |
ashik.ali |
21 |
public List<DistrictMaster> getAllDistrictMaster(String stateName);
|
| 23509 |
amit.gupta |
22 |
public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
|
| 24349 |
amit.gupta |
23 |
public Map<Integer, CustomRetailer> getFofoRetailers();
|
| 23957 |
tejbeer |
24 |
public CustomRetailer getFofoRetailer(int fofoId) throws ProfitMandiBusinessException;
|
| 23781 |
ashik.ali |
25 |
public Map<Integer, String> getAllFofoRetailerIdEmailIdMap();
|
| 24349 |
amit.gupta |
26 |
public List<MapWrapper<Integer, String>> getAllFofoRetailerIdNameList();
|
| 23880 |
ashik.ali |
27 |
public Map<Integer, String> getAllFofoRetailerIdEmailIdMap(Set<Integer> retailerIds);
|
| 24349 |
amit.gupta |
28 |
Map<Integer, String> getAllFofoRetailerIdNameMap(List<Integer> storeIds);
|
|
|
29 |
Map<Integer, String> getAllFofoRetailerIdNameMap();
|
| 25383 |
tejbeer |
30 |
Map<Integer, CustomRetailer> getFofoRetailerUserId(List<Integer> fofoIds)throws ProfitMandiBusinessException;
|
| 22980 |
ashik.ali |
31 |
}
|