public ManagementShellPresenter(IManagementShellView view)
        {
            this.view = view;

            taskQueue = new TaskQueue();

            ActionAppender.Register(view.LogMessage);

            managementConfiguration = new ManagementConfiguration();

            managementConfiguration.Initialize();
        }