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 theOfficeWorkingDayentities for the givenOfficeentity.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByOffice
Find all theOfficeWorkingDayentities for the givenOfficeentity.- Parameters:
office-Officeentity- Returns:
ListofOfficeWorkingDayentities
-