-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat search questioning #91
Conversation
|
||
SurveyUnit surveyUnit = surveyUnitService.findbyId(id); | ||
SurveyUnitComment surveyUnitComment = convertToEntity(surveyUnitCommentDto); | ||
SurveyUnitComment surveyUnitComment = surveyUnitCommentService.convertToEntity(surveyUnitCommentDto); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe the service which converts to entity ? controller only needs to control input data
|
||
Set<Questioning> findBySurveyUnitIdSu(String idSu); | ||
|
||
Page<Questioning> findAll(Pageable pageable); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it a findAll method if partial data is returned ?
|
||
@Override | ||
public void afterPropertiesSet() { | ||
eventOrderCache = eventOrderService.findAll().stream() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could cause problems if event orders are updated in db
|
||
QuestioningComment saveQuestioningComment(QuestioningComment questioningComment); | ||
|
||
QuestioningComment convertToEntity(QuestioningCommentInputDto questioningCommentDto); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
convertToEntity private ?
|
||
QuestioningCommunicationDto convertToDto(QuestioningCommunication questioningCommunication) ; | ||
|
||
QuestioningCommunication convertToEntity(QuestioningCommunicationDto questioningCommunicationDto) throws ParseException; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here ?
Quality Gate passedIssues Measures |
No description provided.