Subversion Repositories SmartDukaan

Rev

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

Rev 27205 Rev 27393
Line 14... Line 14...
14
import com.spice.profitmandi.dao.entity.cs.Region;
14
import com.spice.profitmandi.dao.entity.cs.Region;
15
import com.spice.profitmandi.dao.entity.cs.Ticket;
15
import com.spice.profitmandi.dao.entity.cs.Ticket;
16
import com.spice.profitmandi.dao.entity.cs.TicketAssigned;
16
import com.spice.profitmandi.dao.entity.cs.TicketAssigned;
17
import com.spice.profitmandi.dao.entity.cs.TicketCategory;
17
import com.spice.profitmandi.dao.entity.cs.TicketCategory;
18
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
18
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
-
 
19
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
19
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
20
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
20
 
21
 
21
@Service
22
@Service
22
public interface CsService {
23
public interface CsService {
23
	// Sends happy code to customer
24
	// Sends happy code to customer
Line 66... Line 67...
66
 
67
 
67
	void assignTicket(Ticket ticket) throws ProfitMandiBusinessException;
68
	void assignTicket(Ticket ticket) throws ProfitMandiBusinessException;
68
 
69
 
69
	Map<Integer, List<AuthUser>> getAssignedAuthList(List<Ticket> tickets);
70
	Map<Integer, List<AuthUser>> getAssignedAuthList(List<Ticket> tickets);
70
 
71
 
-
 
72
	Activity createActivity(ActivityType activityType, String message, int createdBy);
-
 
73
 
71
 
74
 
72
}
75
}