24 lines
603 B
Java
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;
|
|
|
|
}
|