public GlobalModeSetting(ConfigInitWizardStep returnToStep, bool isPartOfWizard, IConsole console, IFileSystem fileSystem) : base(console, fileSystem) { this.returnToStep = returnToStep; this.isPartOfWizard = isPartOfWizard; }
public GlobalModeSetting(ConfigInitWizardStep returnToStep, bool isPartOfWizard) { this.returnToStep = returnToStep; this.isPartOfWizard = isPartOfWizard; }
public GlobalModeSetting WithData(ConfigInitWizardStep returnStep, bool isPartOfTheWizard) { this.returnToStep = returnStep; this.isPartOfWizard = isPartOfTheWizard; return(this); }