コード例 #1
0
 public SendHandler(ICatalogHandler catalogHandler, IFiksIOSender sender, IAsicEncrypter asicEncrypter, IPublicKeyProvider publicKeyProvider)
 {
     _sender            = sender;
     _asicEncrypter     = asicEncrypter;
     _publicKeyProvider = publicKeyProvider;
     _catalogHandler    = catalogHandler;
 }
コード例 #2
0
 public SendHandler(
     ICatalogHandler catalogHandler,
     IMaskinportenClient maskinportenClient,
     FiksIOSenderConfiguration senderConfiguration,
     IntegrasjonConfiguration integrasjonConfiguration,
     IAsicEncrypter asicEncrypter)
     : this(
         catalogHandler,
         new FiksIOSender(senderConfiguration, maskinportenClient, integrasjonConfiguration.IntegrasjonId, integrasjonConfiguration.IntegrasjonPassord),
         asicEncrypter)
 {
 }