1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-05 10:32:54 +00:00

Issue #4: Service zum Ermitteln von Studien hinzugefügt

This commit is contained in:
2023-03-13 16:45:04 +01:00
parent 4a6055bc22
commit 90caad3041
3 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package DNPM.services;
import java.util.List;
public interface StudienService {
List<Studie> findAll();
List<Studie> findByQuery(String query);
}