29 lines
870 B
Java
29 lines
870 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.orm.jpa.JpaSystemException;
|
|
|
|
import com.jasamedika.medifirst2000.entities.IndeksKinerjaDokter;
|
|
import com.jasamedika.medifirst2000.exception.ServiceVOException;
|
|
import com.jasamedika.medifirst2000.vo.IndeksKinerjaDokterVO;
|
|
|
|
/**
|
|
* @author salmanoe
|
|
* @since Nov 29, 2021
|
|
*/
|
|
public interface IndeksKinerjaDokterService extends BaseVoService<IndeksKinerjaDokter, IndeksKinerjaDokterVO, String> {
|
|
|
|
/**
|
|
* no implementation yet in the front-end
|
|
*
|
|
* @param vos
|
|
* list of indeks kinerja dokter that will save to database
|
|
* @return list noRec of data from indeks kinerja dokter
|
|
* @throws JpaSystemException
|
|
* @throws ServiceVOException
|
|
*/
|
|
public List<String> addAll(List<IndeksKinerjaDokterVO> vos) throws JpaSystemException, ServiceVOException;
|
|
|
|
}
|