Subversion Repositories SmartDukaan

Rev

Rev 23781 | Rev 24099 | 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
 
23984 govind 3
import java.util.List;
23204 ashik.ali 4
import java.util.Map;
21525 amit.gupta 5
 
23204 ashik.ali 6
import org.springframework.stereotype.Service;
7
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
 
10
@Service
21525 amit.gupta 11
public interface UserService {
12
	boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
22845 amit.gupta 13
	boolean createActivationCode(int userId) throws Throwable;
23204 ashik.ali 14
	public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
23984 govind 15
	public Map<Integer,String> getAllUseUserIdEmailIdMap(List<Integer> userIds);
21525 amit.gupta 16
}