public AccountCheckInstance()
    {
        // 예금주조회 서비스 객체 초기화
        accountCheckService = new AccountCheckService(linkID, secretKey);

        // 연동환경 설정값, 개발용(true), 상업용(false)
        accountCheckService.IsTest = true;

        // 인증토큰의 IP제한기능 사용여부, 권장(true)
        accountCheckService.IPRestrictOnOff = true;

        // 팝빌 API 서비스 고정 IP 사용여부, true-사용, false-미사용, 기본값(false)
        accountCheckService.UseStaticIP = false;

        // 로컬 시스템시간 사용 여부, true(사용) - 기본값, fasle(미사용)
        accountCheckService.UseLocalTimeYN = true;
    }
Esempio n. 2
0
 public AccountCheckController(AccountCheckInstance ACInstance)
 {
     // 예금주조회 서비스 객체 생성
     _accountCheckService = ACInstance.accountCheckService;
 }