From 2f85568170b4c11c6c5876b7fac9e662a004d47f Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 24 Dec 2018 19:01:11 +0200 Subject: Implemented PPC time zone modification ! --- .../PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs index b8638b158..488206590 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs @@ -38,7 +38,7 @@ namespace Tango.PPC.Common.MachineSetup { private IRemoteAssistanceProvider _remoteAssistance; private IUnifiedWriteFilterManager _uwf; - private IWindowsActivationManager _windows_activation_manager; + private IOperationSystemManager _windows_manager; #region Events @@ -71,11 +71,11 @@ namespace Tango.PPC.Common.MachineSetup /// Initializes a new instance of the class. /// /// The remote assistance. - public MachineSetupManager(IRemoteAssistanceProvider remoteAssistance, IUnifiedWriteFilterManager unifiedWriterFilterManager, IWindowsActivationManager windowsActivationManager) + public MachineSetupManager(IRemoteAssistanceProvider remoteAssistance, IUnifiedWriteFilterManager unifiedWriterFilterManager, IOperationSystemManager operationSystemManager) { _remoteAssistance = remoteAssistance; _uwf = unifiedWriterFilterManager; - _windows_activation_manager = windowsActivationManager; + _windows_manager = operationSystemManager; } #endregion @@ -140,7 +140,7 @@ namespace Tango.PPC.Common.MachineSetup { LogManager.Log("Activating windows license..."); UpdateProgress("Activating operation system license", "Activating..."); - await _windows_activation_manager.Activate(setup_response.OSKey); + await _windows_manager.Activate(setup_response.OSKey); } if (setup_response.SetupRemoteAssistance) -- cgit v1.3.1