Пример #1
0
 /*
  * 팝빌에 등록된 현금영수증 자료조회 부서사용자 계정 정보로 홈택스 로그인 가능 여부를 확인합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#CheckLoginDeptUser
  */
 public IActionResult CheckLoginDeptUser()
 {
     try
     {
         var response = _htCashbillService.CheckLoginDeptUser(corpNum);
         return(View("Response", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }