Salman Manoe 9aeb7dc6cc Update LogbookKinerjaDokterService
Penghapusan service get pegawai akses kinerja dokter karena diubah untuk dibuatkan generalisasi
2022-01-17 17:31:37 +07:00

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;
}