示例#1
0
 public VerificationService(string apiKey)
 {
     _profileService        = new VerificationProfileService(apiKey);
     _authenticationService = new VerificationAuthenticationService(apiKey);
     _phoneService          = new VerificationByPhoneService(apiKey);
     _codeService           = new VerificationCodeService(apiKey);
 }
示例#2
0
 public VerificationService()
 {
     _profileService        = new VerificationProfileService();
     _authenticationService = new VerificationAuthenticationService();
     _phoneService          = new VerificationByPhoneService();
     _codeService           = new VerificationCodeService();
 }