PMT-4: Implement Repository

This commit is contained in:
Rajbir Singh 2024-10-21 13:06:38 +02:00 committed by Dominik Säume
parent 81230367b5
commit 7e1ae9ed2c

View file

@ -0,0 +1,10 @@
package de.hmmh.pmt.db;
import org.springframework.data.repository.CrudRepository;
import java.util.List;
public interface AllocationRepository extends CrudRepository<Allocation, AllocationId> {
List<Allocation> findAllocationsByEmployeeId(Long employeeId);
}