Salman Manoe 38a8df3046 Update service remunerasi
Penerapan setting data fix dengan tanggal mulai berlaku
2025-02-12 16:41:33 +07:00

24 lines
603 B
Java

package com.jasamedika.medifirst2000.service;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import com.jasamedika.medifirst2000.entities.Agama;
import com.jasamedika.medifirst2000.vo.AgamaVO;
/**
* Agama Service
*
* @author Roberto
*/
public interface AgamaService <T> extends BaseVoService<Agama, AgamaVO, Integer> {
String getSettingDataFixed(String prefix) ;
List<Agama> findAllAgama();
Agama findByIdAgama(Integer id);
// Map<String, Object> upload(TestUploadVO vo) throws IOException;
// Map<String, Object> createExel(TestUploadVO vo) throws IOException;
}