Subversion Repositories SmartDukaan

Rev

Rev 23204 | Rev 23984 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23781 ashik.ali 1
package com.spice.profitmandi.service.user;
21525 amit.gupta 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
}