package incheon.ags.pss.edit.service;

import java.util.List;

import incheon.ags.pss.edit.vo.SketchVO;

public interface SketchService {
    List<SketchVO> selectSketchList(Long bizNo) throws Exception;
    void insertSketch(SketchVO vo) throws Exception;
    void updateSketch(SketchVO vo) throws Exception;
    void deleteSketch(Long sketchNo) throws Exception;
}
