package itn.let.mjo.msgcampain.service; public interface MjonCandidateService { // 선거문자 후보자 정보 불러오기 public MjonCandidateVO selectCandidateDataInfo(String userId) throws Exception; // 선거문자 후보자 등록 처리 public int insertCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception; // 선거문자 후보자 정보 수정 public int updateCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception; // 선거문자 후보자 삭제 처리 public int deleteCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception; // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception; }