Rev 24417 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.cs;import org.springframework.stereotype.Service;import com.spice.profitmandi.dao.entity.cs.Activity;@Servicepublic interface CsService {//Sends happy code to customervoid addActivity(int ticketId, Activity activity);void createTicket(int fofoId, int subcategoryId, String message);}