コード例 #1
0
 public OtpService(IOtpTokenRepository tokenRepository, IConfiguration configuration, IClickatellBroker clickatellBroker,
                   ICredentialService credentialService, IWalletRepository walletRepository)
 {
     _otpTokenRepository = tokenRepository;
     _configuration      = configuration;
     _clickatellBroker   = clickatellBroker;
     _credentialService  = credentialService;
     _walletRepository   = walletRepository;
 }
コード例 #2
0
ファイル: SmsService.cs プロジェクト: covi-id/cid-api-core
 public SmsService(IConfiguration configuration, IClickatellBroker clickatellBroker, IBitlyBroker bitlyBroker)
 {
     _configuration    = configuration;
     _clickatellBroker = clickatellBroker;
     _bitlyBroker      = bitlyBroker;
 }