mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-03 01:32:55 +00:00
Verwende Spring Configuration zur Pluginkonfiguration
Dies erlaubt eine dynamische Konfiguration der zu verwendenden Service-Implementierungen mit Anpassungen je nach Standort oder Einstellungen.
This commit is contained in:
15
src/main/java/DNPM/services/TherapieplanService.java
Normal file
15
src/main/java/DNPM/services/TherapieplanService.java
Normal file
@ -0,0 +1,15 @@
|
||||
package DNPM.services;
|
||||
|
||||
import de.itc.onkostar.api.Procedure;
|
||||
|
||||
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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user