use of ca.bc.gov.educ.penreg.api.model.v1.PenRequestBatchStudentValidationIssueEntity in project EDUC-PEN-REG-BATCH-API by bcgov.
the class PenRequestBatchStudentValidationIssueService method findAllValidationIssuesByPRBStudentID.
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List<PenRequestBatchStudentValidationIssueEntity> findAllValidationIssuesByPRBStudentID(final UUID penRequestBatchStudentID) {
val penRequestBatchStudentEntity = new PenRequestBatchStudentEntity();
penRequestBatchStudentEntity.setPenRequestBatchStudentID(penRequestBatchStudentID);
return this.repository.findAllByPenRequestBatchStudentEntity(penRequestBatchStudentEntity);
}
Aggregations