package incheon.ags.pss.edit.service;

import java.util.List;

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

public interface SimulationService {
//	List<SimulationVO> selectSimulationList(SimulationVO vo) throws Exception;
    List<SimulationVO> selectSimulationList(SimulationVO vo) throws Exception;
    SimulationVO selectSimulation(Long smltNo) throws Exception;
    void insertSimulation(SimulationVO vo) throws Exception;
    void updateSimulation(SimulationVO vo) throws Exception;
    void deleteSimulation(Long smltNo) throws Exception;
    
}
