예제 #1
0
 /*
  * 홈택스연동 인증을 위해 팝빌에 등록된 인증서 만료일자를 확인합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetCertificateExpireDate
  */
 public IActionResult GetCertificateExpireDate()
 {
     try
     {
         var result = _htCashbillService.GetCertificateExpireDate(corpNum);
         return(View("Result", result.ToString("yyyyMMddHHmmss")));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }