1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 09:12:54 +00:00

refactor: use package name following Java guidelines

This commit is contained in:
2024-09-21 22:10:24 +02:00
parent 93215825f5
commit cc27edc544
93 changed files with 199 additions and 200 deletions

View File

@ -0,0 +1,49 @@
package dev.dnpm.services.therapieplan;
import de.itc.onkostar.api.Procedure;
import java.util.List;
public interface TherapieplanService {
/**
* Verlinke MTB und Übernahme Datum aus Hauptformular in weiteren Bereichen
* "Humangenetische Beratung" und "Reevaluation" und Unterformularen, wenn erforderlich.
*
* @param procedure Die Prozedur mit Hauptformular
*/
void updateRequiredMtbEntries(Procedure procedure);
/**
* Finde verlinkte MTBs in Hauptformular und Unterformularen
*
* @param procedure Die Prozedur mit Hauptformular
* @return Liste mit verlinkten MTBs
*/
List<Procedure> findReferencedMtbs(Procedure procedure);
/**
* Finde verlinkte MTBs in Hauptformular und Unterformularen
*
* @param procedureId ID der Prozedur mit Hauptformular
* @return Liste mit verlinkten MTBs
*/
List<Procedure> findReferencedMtbs(int procedureId);
/**
* Finde verlinkte FollowUps für DNPM UF Einzelempfehlung
*
* @param procedure Die DNPM UF Einzelempfehlung Prozedur
* @return Liste mit verlinkten FollowUps
*/
List<Procedure> findReferencedFollowUpsForSubform(Procedure procedure);
/**
* Finde verlinkte FollowUps für DNPM UF Einzelempfehlung
*
* @param procedureId ID der Prozedur
* @return Liste mit verlinkten FollowUps
*/
List<Procedure> findReferencedFollowUpsForSubform(int procedureId);
}