Subversion Repositories SmartDukaan

Rev

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

Rev 22980 Rev 23025
Line 3... Line 3...
3
import java.util.Map;
3
import java.util.Map;
4
 
4
 
5
import org.springframework.stereotype.Service;
5
import org.springframework.stereotype.Service;
6
 
6
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
8
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
8
 
9
 
9
@Service
10
@Service
10
public interface RetailerService {
11
public interface RetailerService {
11
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
12
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
12
	public Map<String, Object> updateRetailerDocument(String emailIdOrMobileNumber, int documentId) throws ProfitMandiBusinessException;
13
	public Map<String, Object> updateRetailerDocument(String emailIdOrMobileNumber, int documentId) throws ProfitMandiBusinessException;
13
	public Map<String, Object> updateRetailerShopDocument(String emailIdOrMobileNumber, int shopId, int documentId) throws ProfitMandiBusinessException;
14
	public Map<String, Object> updateRetailerShopDocument(String emailIdOrMobileNumber, int shopId, int documentId) throws ProfitMandiBusinessException;
-
 
15
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
14
}
16
}