Subversion Repositories SmartDukaan

Rev

Rev 24383 | Rev 24439 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
24383 amit.gupta 1
package com.spice.profitmandi.dao.repository.cs;
2
 
24417 govind 3
import java.util.List;
4
import java.util.Map;
5
 
24383 amit.gupta 6
import org.springframework.stereotype.Service;
7
 
24417 govind 8
import com.spice.profitmandi.common.model.CustomRetailer;
9
import com.spice.profitmandi.dao.entity.auth.AuthUser;
24383 amit.gupta 10
import com.spice.profitmandi.dao.entity.cs.Activity;
24417 govind 11
import com.spice.profitmandi.dao.entity.cs.Ticket;
12
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
24383 amit.gupta 13
 
14
@Service
15
public interface CsService {
16
	//Sends happy code to customer
17
	void addActivity(int ticketId, Activity activity);
24417 govind 18
	void createTicket(int fofoId,int categoryId, int subcategoryId, String message);
19
	public void addPartnerToRegion(int regionId, List<Integer> fofoIds) ;
20
	public Map<Integer,TicketSubCategory> getSubCategoryIdAndSubCategoryMap(List<Ticket> tickets);
21
	public Map<Integer,AuthUser> getAuthUserIdAndAuthUserMap(List<Ticket> tickets);
22
	public Map<Integer,CustomRetailer> getPartnerByFofoIds(List<Ticket> tickets);
23
	}
24
;