| 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;
|
|
|
5 |
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 23509 |
amit.gupta |
9 |
import com.spice.profitmandi.common.model.CustomRetailer;
|
| 23025 |
ashik.ali |
10 |
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
|
| 23329 |
ashik.ali |
11 |
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
|
| 23378 |
ashik.ali |
12 |
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
|
| 22980 |
ashik.ali |
13 |
|
|
|
14 |
@Service
|
|
|
15 |
public interface RetailerService {
|
|
|
16 |
public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
|
| 23025 |
ashik.ali |
17 |
public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
|
| 23378 |
ashik.ali |
18 |
public FofoStore createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
|
| 23329 |
ashik.ali |
19 |
public List<DistrictMaster> getAllDistrictMaster(String stateName);
|
| 23509 |
amit.gupta |
20 |
public Map<Integer, CustomRetailer> getFofoRetailers(List<Integer> fofoIds);
|
| 22980 |
ashik.ali |
21 |
}
|