2021-01-07 11:34:56 +07:00

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);
}