| 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;
|
|
|
8 |
|
|
|
9 |
@Service
|
|
|
10 |
public interface RetailerService {
|
|
|
11 |
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> updateRetailerShopDocument(String emailIdOrMobileNumber, int shopId, int documentId) throws ProfitMandiBusinessException;
|
|
|
14 |
}
|