Subversion Repositories SmartDukaan

Rev

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

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