Beispiel #1
0
 /*
  * 연동회원의 회사정보를 확인합니다.
  * - https://docs.popbill.com/fax/dotnetcore/api#GetCorpInfo
  */
 public IActionResult GetCorpInfo()
 {
     try
     {
         var response = _faxService.GetCorpInfo(corpNum);
         return(View("GetCorpInfo", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }