示例#1
0
 /*
  * 팝빌 홈택스연동(현금) API 서비스 과금정보를 확인합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetChargeInfo
  */
 public IActionResult GetChargeInfo()
 {
     try
     {
         var response = _htCashbillService.GetChargeInfo(corpNum);
         return(View("GetChargeInfo", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }