public DeploymentManager(DeploymentParams deploymentParams)
 {
     _deploymentParams = deploymentParams;
 }
 /// <summary>
 /// Adds the params to start the service automatically and report on errors
 /// </summary>
 /// <param name="pParams">StartDeployment and TreatErrorsAsWarnings</param>
 /// <returns>An IRoleReference interface - the DeploymentManager class</returns>
 IRoleReference IDeploymentConfigurationParamActivity.AddParams(DeploymentParams? pParams)
 {
     DeploymentParams = pParams;
     return this;
 }