package com.jasamedika.medifirst2000.service; import java.sql.Connection; import java.util.List; import com.jasamedika.medifirst2000.dto.TPatientDto; public interface PacsService { public Connection getConnection(String LOG); public TPatientDto getOne(String noCm); public List getAll(); public TPatientDto insert(TPatientDto value); public TPatientDto update(TPatientDto value); public TPatientDto delete(String noCm); }