16 lines
444 B
Java
16 lines
444 B
Java
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<TPatientDto> getAll();
|
|
public TPatientDto insert(TPatientDto value);
|
|
public TPatientDto update(TPatientDto value);
|
|
public TPatientDto delete(String noCm);
|
|
}
|