summaryrefslogtreecommitdiff
path: root/src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java
blob: f2055546227dfb94e6318924373d9565d4b669a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package 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>>> {}