package itn.let.mjo.cert.service; import java.util.List; import itn.com.cmm.service.FileVO; public interface CertService { List selectCertEtcList(CertVO certVO) throws Exception; CertVO selectCertVO(CertVO searchVO) throws Exception; List selectCertFileList(CertVO searchVO) throws Exception; void insertCertFile(CertVO certVO) throws Exception; List selectCertDetailFileList(CertVO tempCertVO) throws Exception; void deleteCertEtc(CertVO tempCertVO) throws Exception; void updateCertFile(CertVO certVO) throws Exception; }