Exemple #1
0
 /*
  * 홈택스연동 정액제 서비스 상태를 확인합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetFlatRateState
  */
 public IActionResult GetFlatRateState()
 {
     try
     {
         var response = _htCashbillService.GetFlatRateState(corpNum);
         return(View("GetFlatRateState", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }