internal DurableController(
     DurableFunctionInfo durableDurableFunctionInfo,
     IPowerShellServices powerShellServices,
     IOrchestrationInvoker orchestrationInvoker)
 {
     _durableFunctionInfo  = durableDurableFunctionInfo;
     _powerShellServices   = powerShellServices;
     _orchestrationInvoker = orchestrationInvoker;
 }
 public DurableController(
     DurableFunctionInfo durableDurableFunctionInfo,
     PowerShell pwsh)
     : this(
         durableDurableFunctionInfo,
         new PowerShellServices(pwsh),
         new OrchestrationInvoker())
 {
 }