Subversion Repositories SmartDukaan

Rev

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

Rev 25139 Rev 26522
Line 9... Line 9...
9
 
9
 
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 User selectByCartId(int cartId) throws ProfitMandiBusinessException;
14
	public List<User> selectByIds(List<Integer> ids);
15
	public List<User> selectByIds(List<Integer> ids);
15
	public List<User> selectAll();
16
	public List<User> selectAll();
16
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
17
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
17
	public boolean isExistByEmailId(String emailId);
18
	public boolean isExistByEmailId(String emailId);
18
}
19
}