diff --git a/src/main/java/de/hmmh/pmt/db/AllocationRepository.java b/src/main/java/de/hmmh/pmt/db/AllocationRepository.java index dcbc9d3..f10e765 100644 --- a/src/main/java/de/hmmh/pmt/db/AllocationRepository.java +++ b/src/main/java/de/hmmh/pmt/db/AllocationRepository.java @@ -7,4 +7,5 @@ import java.util.List; public interface AllocationRepository extends JpaRepository { List findAllByEmployeeId(Long employeeId); + List findAllByProjectId(Long projectId); }