Subversion Repositories SmartDukaan

Rev

Rev 23046 | Rev 23378 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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;
23025 ashik.ali 9
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
23329 ashik.ali 10
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
22980 ashik.ali 11
 
12
@Service
13
public interface RetailerService {
14
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
23025 ashik.ali 15
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
23329 ashik.ali 16
	public void createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
17
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
22980 ashik.ali 18
}