Пример #1
0
 public NodeLogic(IConfigurationRepository configurationRepository, IAuthorizationLogic authorizationLogic, ActiveDirectoryIdentityProviderLogic adIdpLogic, IPowershellEngine powershell, IAuditLogic auditLogic, CertificateManagementLogic certificateManagement, IPrivateCertificateProcessing privateCertificateProcessing)
 {
     this.auditLogic = auditLogic;
     this.powershell = powershell;
     this.configurationRepository = configurationRepository;
     this.authorizationLogic      = authorizationLogic;
     this.adIdpLogic                   = adIdpLogic;
     this.certificateManagement        = certificateManagement;
     this.privateCertificateProcessing = privateCertificateProcessing;
 }
Пример #2
0
 public ManagedCertificateDiscoveryLogic(NodeLogic nodeLogic, ActiveDirectoryIdentityProviderLogic adIdpLogic, CertificateManagementLogic certificateManagementLogic)
 {
     this.nodeLogic  = nodeLogic;
     this.adIdpLogic = adIdpLogic;
     this.certificateManagementLogic = certificateManagementLogic;
 }