2021-01-07 11:34:56 +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;
}