Subversion Repositories SmartDukaan

Rev

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

Rev 24383 Rev 24417
Line 13... Line 13...
13
	boolean authenticate(String email, String hashedPassword);
13
	boolean authenticate(String email, String hashedPassword);
14
	void persist(AuthUser authUser);
14
	void persist(AuthUser authUser);
15
	AuthUser selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
15
	AuthUser selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
16
	public List<AuthUser> selectAll(int offset,int limit);
16
	public List<AuthUser> selectAll(int offset,int limit);
17
	public long selectCountAuthUser();
17
	public long selectCountAuthUser();
-
 
18
	public List<AuthUser> selectAll();
-
 
19
	public AuthUser selectById(int id);
18
}
20
}