/* * 연동회원의 회사정보를 확인합니다. * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetCorpInfo */ public IActionResult GetCorpInfo() { try { var response = _htCashbillService.GetCorpInfo(corpNum); return(View("GetCorpInfo", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }