Subversion Repositories SmartDukaan

Rev

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

Rev 24383 Rev 24417
Line 15... Line 15...
15
	List<Ticket> selectAllByCreator(int creatorId, Optional<Boolean> resolved, int offset, int limit);
15
	List<Ticket> selectAllByCreator(int creatorId, Optional<Boolean> resolved, int offset, int limit);
16
	List<Ticket> selectAll(int offset, int limit, Optional<Boolean> resolved);
16
	List<Ticket> selectAll(int offset, int limit, Optional<Boolean> resolved);
17
	List<Ticket> selectAllEscalated(Optional<Boolean> resolved, int offset, int limit);
17
	List<Ticket> selectAllEscalated(Optional<Boolean> resolved, int offset, int limit);
18
	List<Ticket> selectAllEscalatedByCreator(int fofoId, Optional<Boolean> resolved, int offset, int limit);
18
	List<Ticket> selectAllEscalatedByCreator(int fofoId, Optional<Boolean> resolved, int offset, int limit);
19
	List<Ticket> selectAllEscalatedByAssignee(int assigneId, Optional<Boolean> resolved, int offset, int limit);
19
	List<Ticket> selectAllEscalatedByAssignee(int assigneId, Optional<Boolean> resolved, int offset, int limit);
-
 
20
	public long selectAllCountByAssignee(int assigneeId, Optional<Boolean> resolved);
-
 
21
	public long selectAllCountByCreator(int creatorId, Optional<Boolean> resolved);
20
}
22
}