Rev 24417 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 24383 |
amit.gupta |
1 |
package com.spice.profitmandi.dao.repository.cs;
|
|
|
2 |
|
|
|
3 |
import org.springframework.stereotype.Service;
|
|
|
4 |
|
|
|
5 |
import com.spice.profitmandi.dao.entity.cs.Activity;
|
|
|
6 |
|
|
|
7 |
@Service
|
|
|
8 |
public interface CsService {
|
|
|
9 |
//Sends happy code to customer
|
|
|
10 |
void addActivity(int ticketId, Activity activity);
|
|
|
11 |
void createTicket(int fofoId, int subcategoryId, String message);
|
|
|
12 |
}
|