Subversion Repositories SmartDukaan

Rev

Rev 24016 | Rev 24383 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24016 Rev 24159
Line 12... Line 12...
12
	public void persist(User user);
12
	public void persist(User user);
13
	public User selectById(int id) throws ProfitMandiBusinessException;
13
	public User selectById(int id) throws ProfitMandiBusinessException;
14
	public List<User> selectByIds(List<Integer> ids);
14
	public List<User> selectByIds(List<Integer> ids);
15
	public List<User> selectAll();
15
	public List<User> selectAll();
16
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
16
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
-
 
17
	public boolean isExistByEmailId(String emailId);
17
}
18
}