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 { /** * 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 addAll(List vos) throws JpaSystemException, ServiceVOException; }