public PowerShellGooseActionFactory(IPowerShellTaskFactory powerShellTaskFactory, IShellCommandBuilder commandBuilder)
 {
     this.powerShellTaskFactory = powerShellTaskFactory;
     this.commandBuilder = commandBuilder;
 }
 public PowerShellGooseAction(IPowerShellTaskFactory powershellTaskFactory, ShellCommand command)
 {
     this.powershellTaskFactory = powershellTaskFactory;
     this.command = command;
 }