/* * 연동회원 사업자번호에 등록된 담당자(팝빌 로그인 계정) 목록을 확인합니다. * - https://docs.popbill.com/htcashbill/dotnetcore/api#ListContact */ public IActionResult ListContact() { try { var response = _htCashbillService.ListContact(corpNum); return(View("ListContact", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }