19 lines
438 B
Java
19 lines
438 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.List;
|
|
|
|
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<Profesi, ProfesiVO, Integer> {
|
|
|
|
public List<ProfesiVO> findAllActive() throws JpaSystemException;
|
|
|
|
}
|