blob: 2e182c0d39be9c8e0d483358b907b762f967fcd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package dev.dnpm.services.systemtherapie;
import de.itc.onkostar.api.Procedure;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
/**
* Mapper um ein Systemtherapieformular in eine Optional-Map mit Prozedurwerten umzuwandeln
*
* @since 0.2.0
*/
public interface ProzedurToProzedurwerteMapper extends Function<Procedure, Optional<Map<String, String>>> {}
|