Subversion Repositories SmartDukaan

Rev

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

Rev 24747 Rev 24787
Line 24... Line 24...
24
	public long selectAllCountByCreator(int creatorId, Optional<Boolean> resolved);
24
	public long selectAllCountByCreator(int creatorId, Optional<Boolean> resolved);
25
	public List<Ticket> selectAllByEscalatedUserType(int authUser,EscalationType escalationType,int offset,int limit);
25
	public List<Ticket> selectAllByEscalatedUserType(int authUser,EscalationType escalationType,int offset,int limit);
26
	public long selectAllCountByEscalatedUserType(int authUser,EscalationType escalationType);
26
	public long selectAllCountByEscalatedUserType(int authUser,EscalationType escalationType);
27
	public Long selectAllCount();
27
	public Long selectAllCount();
28
	public List<Ticket> selectAllNotClosedTickets();
28
	public List<Ticket> selectAllNotClosedTickets();
29
	public List<Ticket> selectAllByAssignee(int assigneeId,Optional<Boolean> resolved,SortOrder sortOrder,int offset,int limit);
29
	public List<Ticket> selectAllByAssignee(int assigneeId, Optional<Boolean> resolved, SortOrder sortOrder,TicketSearchType ticketSearchType,int searchTerm, int offset,
-
 
30
			int limit);
30
	public List<Ticket> selectAllByTicketIds(List<Integer> ticketIds);
31
	public List<Ticket> selectAllByTicketIds(List<Integer> ticketIds);
31
	public long selectAllCountByAssignee(int assigneeId,Optional<Boolean> resolved);
32
	public long selectAllCountByAssignee(int assigneeId,Optional<Boolean> resolved,TicketSearchType ticketSearchType,int searchTerm);
32
	public List<Ticket> selectAllManagerTicket(int authUserId, SortOrder sortOrder,Optional<Boolean> resolved,TicketSearchType ticketSearchType,int searchTerm,int offset, int limit);
33
	public List<Ticket> selectAllManagerTicket(int authUserId, SortOrder sortOrder,Optional<Boolean> resolved,TicketSearchType ticketSearchType,int searchTerm,int offset, int limit);
33
	public long selectAllCountByManagerTicket(int authUserId,Optional<Boolean> resolved,TicketSearchType ticketSearchType, int searchTerm);	
34
	public long selectAllCountByManagerTicket(int authUserId,Optional<Boolean> resolved,TicketSearchType ticketSearchType, int searchTerm);	
34
}
35
}
35
36