Subversion Repositories SmartDukaan

Rev

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

Rev 23509 Rev 24016
Line 10... Line 10...
10
@Repository
10
@Repository
11
public interface UserRepository {
11
public interface UserRepository {
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 User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
16
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
16
}
17
}