mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-02 01:02:55 +00:00
Verschiebe Klasse Studie in Paket dto
This commit is contained in:
@ -1,11 +1,11 @@
|
||||
package DNPM.analyzer;
|
||||
|
||||
import DNPM.dto.Studie;
|
||||
import DNPM.security.DelegatingDataBasedPermissionEvaluator;
|
||||
import DNPM.security.PermissionType;
|
||||
import DNPM.services.Studie;
|
||||
import DNPM.services.StudienService;
|
||||
import DNPM.services.therapieplan.TherapieplanServiceFactory;
|
||||
import DNPM.services.mtb.MtbService;
|
||||
import DNPM.services.therapieplan.TherapieplanServiceFactory;
|
||||
import de.itc.onkostar.api.Disease;
|
||||
import de.itc.onkostar.api.Procedure;
|
||||
import de.itc.onkostar.api.analysis.AnalyseTriggerEvent;
|
||||
|
@ -1,4 +1,28 @@
|
||||
package DNPM.services;
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* 2023 Comprehensive Cancer Center Mainfranken
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
package DNPM.dto;
|
||||
|
||||
public class Studie {
|
||||
private final String kategorieName;
|
@ -1,5 +1,6 @@
|
||||
package DNPM.services;
|
||||
|
||||
import DNPM.dto.Studie;
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
@ -1,5 +1,7 @@
|
||||
package DNPM.services;
|
||||
|
||||
import DNPM.dto.Studie;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface StudienService {
|
||||
|
@ -1,5 +1,6 @@
|
||||
package DNPM.services;
|
||||
|
||||
import DNPM.dto.Studie;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
Reference in New Issue
Block a user