Update IndeksKinerjaDokterService

Pembuatan javadoc untuk fungsi simpan all indeks kinerja dokter
This commit is contained in:
Salman Manoe 2022-01-06 14:41:48 +07:00
parent a96a5a99b3
commit 2db2214bd3

View File

@ -14,6 +14,15 @@ import com.jasamedika.medifirst2000.vo.IndeksKinerjaDokterVO;
*/
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;
}