package com.jasamedika.medifirst2000.service; import java.util.List; import java.util.Map; import org.springframework.orm.jpa.JpaSystemException; import com.jasamedika.medifirst2000.entities.Profesi; import com.jasamedika.medifirst2000.vo.ProfesiVO; /** * @author salmanoe * @since Oct 8, 2021 */ public interface ProfesiService extends BaseVoService { public List findAllActive() throws JpaSystemException; public List> findByStatus(Integer idPegawai, Short idJenis) throws JpaSystemException; }