public ScriptController(IConfigurationRepository configurationRepository, IScriptManagementLogic scriptLogic, IPowershellEngine powershell)
 {
     this.powershell              = powershell;
     this.scriptLogic             = scriptLogic;
     this.configurationRepository = configurationRepository;
     this.http = new HttpResponseHandler(this);
 }
Exemple #2
0
 public PowershellEngine(IAuditLogic auditLogic, IScriptManagementLogic scriptManagement)
 {
     this.scriptManagement = scriptManagement;
     this.auditLogic       = auditLogic;
 }