Uses of Class
com.markvarga21.studentmanager.entity.Student
Packages that use Student
Package
Description
A package which contains mapping utilities.
A package containing the applications repositories.
-
Uses of Student in com.markvarga21.studentmanager.mapping
Methods in com.markvarga21.studentmanager.mapping that return StudentModifier and TypeMethodDescriptionStudentMapper.mapStudentDtoToEntity
(StudentDto studentDto) Maps aStudentDto
to aStudent
entity.Methods in com.markvarga21.studentmanager.mapping with parameters of type StudentModifier and TypeMethodDescriptionStudentMapper.mapStudentEntityToDto
(Student student) Maps anStudent
entity to anStudentDto
. -
Uses of Student in com.markvarga21.studentmanager.repository
Methods in com.markvarga21.studentmanager.repository that return types with arguments of type StudentModifier and TypeMethodDescriptionStudentRepository.findStudentByFirstNameAndLastName
(String firstName, String lastName) Fetches a student by the first name and last name.StudentRepository.findStudentByPassportNumber
(String passportNumber) Fetches a student by the passport number.