diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-24 19:01:11 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-24 19:01:11 +0200 |
| commit | 2f85568170b4c11c6c5876b7fac9e662a004d47f (patch) | |
| tree | 587b0a30e8de36322583a10b136c7d43b25edd34 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs | |
| parent | 7a9e8e8721e895b30a2652e2aaaeb6401b72250e (diff) | |
| download | Tango-2f85568170b4c11c6c5876b7fac9e662a004d47f.tar.gz Tango-2f85568170b4c11c6c5876b7fac9e662a004d47f.zip | |
Implemented PPC time zone modification !
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
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 <see cref="MachineSetupManager"/> class. /// </summary> /// <param name="remoteAssistance">The remote assistance.</param> - 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) |
