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;
}
