Subversion Repositories SmartDukaan

Rev

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

Rev 25383 Rev 25570
Line 15... Line 15...
15
 
15
 
16
	AuthUser selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
16
	AuthUser selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
17
 
17
 
18
	public List<AuthUser> selectAll(int offset, int limit);
18
	public List<AuthUser> selectAll(int offset, int limit);
19
 
19
 
-
 
20
	public List<AuthUser> selectAllActiveUser(int offset, int limit);
-
 
21
 
20
	public long selectCountAuthUser();
22
	public long selectCountAuthUser();
21
 
23
 
22
	public List<AuthUser> selectAll();
24
	public List<AuthUser> selectAllActiveUser();
23
 
25
 
24
	public AuthUser selectById(int id);
26
	public AuthUser selectById(int id);
25
 
27
 
26
	public List<AuthUser> selectAllAuthUserByIds(List<Integer> ids);
28
	public List<AuthUser> selectAllAuthUserByIds(List<Integer> ids);
27
 
29