/*
  * 팝빌 계좌조회 API 서비스 과금정보를 확인합니다.
  * - https://docs.popbill.com/easyfinbank/dotnetcore/api#GetChargeInfo
  */
 public IActionResult GetChargeInfo()
 {
     try
     {
         var response = _easyFinBankService.GetChargeInfo(corpNum);
         return(View("GetChargeInfo", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }