16 lines
487 B
Java
16 lines
487 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.jasamedika.medifirst2000.vo.PertanyaanSurveyVO;
|
|
|
|
public interface PertanyaanSurveyService {
|
|
|
|
public Map<String, Object> addPertanyaan(PertanyaanSurveyVO vo);
|
|
public Map<String, Object> updatePertanyaan(PertanyaanSurveyVO vo);
|
|
public Map<String, Object> findAllPertanyaanSurveyFromMapping();
|
|
public Map<String, Object> findAllPertanyaan();
|
|
public Map<String, Object> deletePertanyaan(Integer id);
|
|
|
|
}
|