package incheon.res.mng.nt.popup.service;

import incheon.res.mng.nt.popup.vo.MngNtPopup;
import incheon.res.mng.nt.popup.vo.MngNtPopupVO;

import java.util.List;

public interface MngNtPopupService {
    int countPopup(MngNtPopupVO vo) throws Exception;

    List selectPopupList(MngNtPopupVO vo) throws Exception;

    MngNtPopup selectPopup(MngNtPopupVO vo) throws Exception;

    String selectMaxPopupSn(MngNtPopupVO vo) throws Exception;

    void updatePopup(MngNtPopupVO vo) throws Exception;

    void insertPopup(MngNtPopupVO vo) throws Exception;

    int deletePopup(MngNtPopupVO vo) throws Exception;
}
