Penghapusan service get pegawai akses kinerja dokter karena diubah untuk dibuatkan generalisasi
18 lines
677 B
Java
18 lines
677 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import org.springframework.orm.jpa.JpaSystemException;
|
|
|
|
import com.jasamedika.medifirst2000.entities.LogbookKinerjaDokter;
|
|
import com.jasamedika.medifirst2000.exception.ServiceVOException;
|
|
import com.jasamedika.medifirst2000.vo.LogbookKinerjaDokterVO;
|
|
import com.jasamedika.medifirst2000.vo.custom.CpptDokterVo;
|
|
|
|
public interface LogbookKinerjaDokterService
|
|
extends BaseVoService<LogbookKinerjaDokter, LogbookKinerjaDokterVO, String> {
|
|
|
|
public LogbookKinerjaDokterVO verify(CpptDokterVo vo) throws JpaSystemException, ServiceVOException;
|
|
|
|
public void verify(String idLogbook) throws JpaSystemException, ServiceVOException;
|
|
|
|
}
|