package incheon.ags.pss.edit.service;

import java.util.List;

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

public interface ViewpointService {
    List<ViewpointVO> selectViewpointList(Long bizNo) throws Exception;
    void insertViewpoint(ViewpointVO vo) throws Exception;
    void updateViewpoint(ViewpointVO vo) throws Exception;
    void deleteViewpoint(Long psvpNo) throws Exception;
}