Subversion Repositories SmartDukaan

Rev

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