Rev 23025 |
Rev 23329 |
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;
|
| 23025 |
ashik.ali |
13 |
public Map<String, Object> updateRetailerDetails(UpdateRetailerRequest updateRetailerRequest) throws ProfitMandiBusinessException;
|
| 22980 |
ashik.ali |
14 |
}
|