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 17e20ee830
commit d5a0483293
Signed by: SZUT-Dominik
GPG key ID: 67D15BB250B41E7C

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);
}