17 lines
877 B
Java
17 lines
877 B
Java
package net.gepafin.tendermanagement.service;
|
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
import net.gepafin.tendermanagement.model.request.CommunicationRequestBean;
|
|
import net.gepafin.tendermanagement.model.response.ApplicationAmendmentResponse;
|
|
import net.gepafin.tendermanagement.model.response.CommunicationResponseBean;
|
|
|
|
public interface CommunicationService {
|
|
CommunicationResponseBean addCommentToAmendmentRequest(HttpServletRequest request ,CommunicationRequestBean communicationRequestBean, Long amendmentId);
|
|
|
|
String deleteComment(HttpServletRequest request,Long amendmentId, Long commentId);
|
|
|
|
CommunicationResponseBean updateAmendmentComment(HttpServletRequest request,CommunicationRequestBean communicationRequestBean, Long amendmentId, Long commentId);
|
|
|
|
ApplicationAmendmentResponse getAmendmentComments(HttpServletRequest request,Long id);
|
|
}
|