package itn.let.mjo.addragency.service;
import java.util.List;
/**
* 주소록 관리를 위한 서비스 인터페이스 클래스
* @author ITN
* @since 2021.04.08
* @version 1.0
* @see
*
*
* << 개정이력(Modification Information) >>
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2021.04.08 ITN 최초 생성
*
*/
public interface AddrAgencyService {
void insert(AddrAgencyVO addrAgencyVO) throws Exception;
AddrAgencyVO selectDetail(AddrAgencyVO addrAgencyVO) throws Exception;
int update(AddrAgencyVO addrAgencyVO) throws Exception;
int delete(AddrAgencyVO addrAgencyVO) throws Exception;
List selectList(AddrAgencyVO addrAgencyVO) throws Exception;
List> selectElseList(AddrAgencyVO addrAgencyVO) throws Exception;
/*
List selectAddrList(AddrVO addrVO) throws Exception;
AddrVO selectAddrDetail(AddrVO addrVO) throws Exception;
void insertAddr(AddrVO addrVO) throws Exception;
int updateAddr(AddrVO addrVO) throws Exception;
int deleteAddr(AddrVO addrVO) throws Exception;
List selectAddrBasicGrpList(AddrVO addrVO) throws Exception;
int selectAddrTotalCount(AddrVO addrVO) throws Exception;
void insertCopyAddr(AddrVO addrVO) throws Exception;
String updateAddrAnotherMember(AddrVO addrVO, AddrGroupVO addrGroupVO, AddrTransHistVO addrTransHistVO) throws Exception;
//주소록 등록 총 건수 및 정보 불러오기
public List> selectAddrTotCntInfByUserId(AddrVO addrVO) throws Exception;
//문자발송에서 수신자 리스트를 주소록에 등록하기
public int insertAddrList(List addrList) throws Exception;
public int selectDuplAddrCnt(AddrVO addrVO) throws Exception;
List> selectPhoneNumInAddrGroup(AddrVO addrVO) throws Exception;
*/
}