Subversion Repositories SmartDukaan

Rev

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

Rev 23025 Rev 23046
Line 8... Line 8...
8
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
8
import com.spice.profitmandi.common.model.UpdateRetailerRequest;
9
 
9
 
10
@Service
10
@Service
11
public interface RetailerService {
11
public interface RetailerService {
12
	public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
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;
-
 
15
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
13
	public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
16
}
14
}