Subversion Repositories SmartDukaan

Rev

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

Rev 23046 Rev 23329
Line 1... Line 1...
1
package com.spice.profitmandi.service.user;
1
package com.spice.profitmandi.service.user;
2
 
2
 
-
 
3
import java.util.List;
3
import java.util.Map;
4
import java.util.Map;
4
 
5
 
5
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
6
 
7
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
9
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
-
 
10
import com.spice.profitmandi.dao.entity.dtr.DistrictMaster;
9
 
11
 
10
@Service
12
@Service
11
public interface RetailerService {
13
public interface RetailerService {
12
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
14
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
13
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
15
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
-
 
16
	public void createFofoStoreCodeByUserId(int userId, String districtName, String stateName) throws ProfitMandiBusinessException;
-
 
17
	public List<DistrictMaster> getAllDistrictMaster(String stateName);
14
}
18
}