Package it.univr.passportease.repository
Interface OfficeWorkingDayRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<OfficeWorkingDay,
,UUID> org.springframework.data.jpa.repository.JpaRepository<OfficeWorkingDay,
,UUID> org.springframework.data.repository.ListCrudRepository<OfficeWorkingDay,
,UUID> org.springframework.data.repository.ListPagingAndSortingRepository<OfficeWorkingDay,
,UUID> org.springframework.data.repository.PagingAndSortingRepository<OfficeWorkingDay,
,UUID> org.springframework.data.repository.query.QueryByExampleExecutor<OfficeWorkingDay>
,org.springframework.data.repository.Repository<OfficeWorkingDay,
UUID>
@Repository
public interface OfficeWorkingDayRepository
extends org.springframework.data.jpa.repository.JpaRepository<OfficeWorkingDay,UUID>
Repository for
OfficeWorkingDay
entity.-
Method Summary
Modifier and TypeMethodDescriptionfindByOffice
(Office office) Find all theOfficeWorkingDay
entities for the givenOffice
entity.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByOffice
Find all theOfficeWorkingDay
entities for the givenOffice
entity.- Parameters:
office
-Office
entity- Returns:
List
ofOfficeWorkingDay
entities
-