Go to most recent revision | Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;
import org.springframework.stereotype.Component;
@Component
public interface UserService {
boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
boolean createActivationCode(int userId) throws Throwable;
}