package com.jasamedika.medifirst2000.service; import java.util.Map; import com.jasamedika.medifirst2000.entities.TimeOutControl; import com.jasamedika.medifirst2000.vo.TimeOutControlVO; public interface TimeOutControlService extends BaseVoService { Map saveTimeOutControl(TimeOutControlVO vo); Map updateTimeOutControl(TimeOutControlVO vo); Map findByNoRec(String noRec); Map getTimeOutByNoRecAntrian(String noRec); }