Subversion Repositories SmartDukaan

Rev

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

Rev 25979 Rev 25988
Line 18... Line 18...
18
 
18
 
19
	public List<Lead> selectAll(int offset, int limit);
19
	public List<Lead> selectAll(int offset, int limit);
20
 
20
 
21
	public List<Lead> selectAllByStatus(LeadStatus status);
21
	public List<Lead> selectAllByStatus(LeadStatus status);
22
 
22
 
-
 
23
	public List<Lead> selectAllByStatus(List<LeadStatus> status, int offset, int limit);
-
 
24
 
23
	List<Lead> selectLeadsScheduledBetweenDate(LocalDateTime startDate, LocalDateTime endDate);
25
	List<Lead> selectLeadsScheduledBetweenDate(LocalDateTime startDate, LocalDateTime endDate);
-
 
26
 
-
 
27
	public long selectCountByStatus(List<LeadStatus> status);
-
 
28
 
-
 
29
	public long getLeadCount(LeadStatus status, String searchTerm);
-
 
30
 
-
 
31
	public List<Lead> selectBySearchTerm(List<LeadStatus> status, String searchTerm, int offset, int limit);
24
}
32
}