Subversion Repositories SmartDukaan

Rev

Rev 23204 | Rev 23984 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.user;

import java.util.Map;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;

@Service
public interface UserService {
        boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
        boolean createActivationCode(int userId) throws Throwable;
        public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
}