コード例 #1
0
 /*
  * 홈택스연동 인증을 위해 팝빌에 등록된 현금영수증 자료조회 부서사용자 계정을 확인합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#CheckDeptUser
  */
 public IActionResult CheckDeptUser()
 {
     try
     {
         var response = _htCashbillService.CheckDeptUser(corpNum);
         return(View("Response", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }