Subversion Repositories SmartDukaan

Rev

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

Rev 27660 Rev 27819
Line 6... Line 6...
6
 
6
 
7
import javax.swing.SortOrder;
7
import javax.swing.SortOrder;
8
 
8
 
9
import org.springframework.stereotype.Repository;
9
import org.springframework.stereotype.Repository;
10
 
10
 
-
 
11
import com.spice.profitmandi.dao.entity.auth.AuthUser;
11
import com.spice.profitmandi.dao.entity.cs.Ticket;
12
import com.spice.profitmandi.dao.entity.cs.Ticket;
12
import com.spice.profitmandi.dao.entity.cs.TicketSearchType;
13
import com.spice.profitmandi.dao.entity.cs.TicketSearchType;
13
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
14
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
14
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
15
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
15
 
16
 
Line 62... Line 63...
62
			TicketSearchType ticketSearchType, int searchTerm);
63
			TicketSearchType ticketSearchType, int searchTerm);
63
 
64
 
64
	public List<Ticket> selectAllResolvedMarkedTicketByCreator(int assigneeId);
65
	public List<Ticket> selectAllResolvedMarkedTicketByCreator(int assigneeId);
65
 
66
 
66
	public List<Ticket> selectAllNotClosedTicketsWithStatus(ActivityType activityType);
67
	public List<Ticket> selectAllNotClosedTicketsWithStatus(ActivityType activityType);
-
 
68
 
-
 
69
	public Map<AuthUser, Long> selectAllAuthUserTicketCount(Optional<Boolean> resolved);
67
}
70
}
68
71