public ComputerSystem TryToTurnOn()
        {
            if (root != null)
            {
                ComputerSystem startedSystem = root.TryRun();
                if (startedSystem != null)
                {
                    startedSystem.Startup(this);
                }
                return(startedSystem);
            }

            return(null);
        }