Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 21525 |
amit.gupta |
1 |
package com.spice.profitmandi.service;
|
|
|
2 |
|
| 23204 |
ashik.ali |
3 |
import java.util.Map;
|
| 21525 |
amit.gupta |
4 |
|
| 23204 |
ashik.ali |
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
8 |
|
|
|
9 |
@Service
|
| 21525 |
amit.gupta |
10 |
public interface UserService {
|
|
|
11 |
boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
|
| 22845 |
amit.gupta |
12 |
boolean createActivationCode(int userId) throws Throwable;
|
| 23204 |
ashik.ali |
13 |
public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
|
| 21525 |
amit.gupta |
14 |
}
|