diff --git a/src/main/java/de/hmmh/pmt/db/AllocationRepository.java b/src/main/java/de/hmmh/pmt/db/AllocationRepository.java new file mode 100644 index 0000000..5d4bc07 --- /dev/null +++ b/src/main/java/de/hmmh/pmt/db/AllocationRepository.java @@ -0,0 +1,10 @@ +package de.hmmh.pmt.db; + +import org.springframework.data.repository.CrudRepository; + +import java.util.List; + +public interface AllocationRepository extends CrudRepository { + + List findAllocationsByEmployeeId(Long employeeId); +}