Subversion Repositories SmartDukaan

Rev

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

Rev 24570 Rev 24699
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.cs;
1
package com.spice.profitmandi.dao.repository.cs;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
import java.util.Map;
4
import java.util.Map;
-
 
5
import java.util.Optional;
-
 
6
 
-
 
7
import javax.swing.SortOrder;
5
 
8
 
6
import org.springframework.stereotype.Service;
9
import org.springframework.stereotype.Service;
7
 
10
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
11
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.common.model.CustomRetailer;
12
import com.spice.profitmandi.common.model.CustomRetailer;
Line 12... Line 15...
12
import com.spice.profitmandi.dao.entity.cs.Position;
15
import com.spice.profitmandi.dao.entity.cs.Position;
13
import com.spice.profitmandi.dao.entity.cs.Region;
16
import com.spice.profitmandi.dao.entity.cs.Region;
14
import com.spice.profitmandi.dao.entity.cs.Ticket;
17
import com.spice.profitmandi.dao.entity.cs.Ticket;
15
import com.spice.profitmandi.dao.entity.cs.TicketAssigned;
18
import com.spice.profitmandi.dao.entity.cs.TicketAssigned;
16
import com.spice.profitmandi.dao.entity.cs.TicketCategory;
19
import com.spice.profitmandi.dao.entity.cs.TicketCategory;
-
 
20
import com.spice.profitmandi.dao.entity.cs.TicketSearchType;
17
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
21
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
18
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
22
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
19
 
23
 
20
@Service
24
@Service
21
public interface CsService {
25
public interface CsService {
Line 46... Line 50...
46
	public Map<Integer,List<AuthUser>> getAuthUserList(List<Ticket> tickets,AuthUser authUser);
50
	public Map<Integer,List<AuthUser>> getAuthUserList(List<Ticket> tickets,AuthUser authUser);
47
	
51
	
48
	public void updateTicket(int categoryId,int subCategoryId,Ticket ticket) throws ProfitMandiBusinessException;
52
	public void updateTicket(int categoryId,int subCategoryId,Ticket ticket) throws ProfitMandiBusinessException;
49
	
53
	
50
	public void sendAssignedTicketMail(AuthUser authUser,Ticket ticket) throws ProfitMandiBusinessException;
54
	public void sendAssignedTicketMail(AuthUser authUser,Ticket ticket) throws ProfitMandiBusinessException;
-
 
55
	
51
}
56
}