示例#1
0
 /*
  * 팝빌에 등록된 홈택스 현금영수증 자료조회 부서사용자 계정을 삭제합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#DeleteDeptUser
  */
 public IActionResult DeleteDeptUser()
 {
     try
     {
         var response = _htCashbillService.DeleteDeptUser(corpNum);
         return(View("Response", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }