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 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;
-
 
4
import java.util.Map;
-
 
5
 
3
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
4
 
7
 
-
 
8
import com.spice.profitmandi.common.model.CustomRetailer;
-
 
9
import com.spice.profitmandi.dao.entity.auth.AuthUser;
5
import com.spice.profitmandi.dao.entity.cs.Activity;
10
import com.spice.profitmandi.dao.entity.cs.Activity;
-
 
11
import com.spice.profitmandi.dao.entity.cs.Ticket;
-
 
12
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;
6
 
13
 
7
@Service
14
@Service
8
public interface CsService {
15
public interface CsService {
9
	//Sends happy code to customer
16
	//Sends happy code to customer
10
	void addActivity(int ticketId, Activity activity);
17
	void addActivity(int ticketId, Activity activity);
11
	void createTicket(int fofoId, int subcategoryId, String message);
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);
12
}
23
	}
-
 
24
;
13
25