package com.jasamedika.medifirst2000.service; import java.util.Map; import com.jasamedika.medifirst2000.vo.PertanyaanSurveyVO; public interface PertanyaanSurveyService { public Map addPertanyaan(PertanyaanSurveyVO vo); public Map updatePertanyaan(PertanyaanSurveyVO vo); public Map findAllPertanyaanSurveyFromMapping(); public Map findAllPertanyaan(); public Map deletePertanyaan(Integer id); }