Uses of Class
com.tfg.crud.GestorBiblioteca.entity.Prestamo
Packages that use Prestamo
Package
Description
-
Uses of Prestamo in com.tfg.crud.GestorBiblioteca.entity
Methods in com.tfg.crud.GestorBiblioteca.entity that return PrestamoMethods in com.tfg.crud.GestorBiblioteca.entity that return types with arguments of type PrestamoMethod parameters in com.tfg.crud.GestorBiblioteca.entity with type arguments of type PrestamoModifier and TypeMethodDescriptionvoidEjemplar.setPrestamos(List<Prestamo> prestamos) voidUsuario.setPrestamos(List<Prestamo> prestamos) -
Uses of Prestamo in com.tfg.crud.GestorBiblioteca.repository
Methods in com.tfg.crud.GestorBiblioteca.repository that return types with arguments of type PrestamoModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Prestamo> PrestamoRepository.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<Prestamo> PrestamoRepository.buscarTodosPrestamos(String busqueda, org.springframework.data.domain.Pageable pageable) PrestamoRepository.findByEjemplarCodigoContainingIgnoreCase(String codigoEjemplar) PrestamoRepository.findByUsuarioIdUsuario(Long idUsuario) -
Uses of Prestamo in com.tfg.crud.GestorBiblioteca.service
Methods in com.tfg.crud.GestorBiblioteca.service that return PrestamoModifier and TypeMethodDescriptionPrestamoService.buscarPrestamoPorId(Long idPrestamo) Busca préstamos por su identificador.PrestamoServiceImp.buscarPrestamoPorId(Long idPrestamo) PrestamoService.editarPrestamo(Long idPrestamo, PrestamoDTO prestamoDTO) Edita un préstamo existente.PrestamoServiceImp.editarPrestamo(Long idPrestamo, PrestamoDTO prestamoDTO) PrestamoService.getPrestamoActivo(Ejemplar e) Obtiene el préstamo activo asociado a un ejemplar.PrestamoServiceImp.getPrestamoActivo(Ejemplar e) PrestamoService.registrarPrestamo(PrestamoDTO prestamoDTO) Registra un nuevo préstamo en el sistema.PrestamoServiceImp.registrarPrestamo(PrestamoDTO prestamoDTO) Methods in com.tfg.crud.GestorBiblioteca.service that return types with arguments of type PrestamoModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Prestamo> PrestamoService.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) Busca préstamos aplicando filtros y paginaciónorg.springframework.data.domain.Page<Prestamo> PrestamoServiceImp.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) PrestamoService.listarPrestamosPorUsuario(Long idUsuario) Lista de todos los préstamoas asociados a un usuario.PrestamoServiceImp.listarPrestamosPorUsuario(Long idUsuario)