private void ParseOs()
        {
            osParser.SetUserAgent(userAgent);
            osParser.SetCache(cache);

            os = osParser.Parse();
        }
        private void ParseOs()
        {
            var osParser = new OperatingSystemParser();

            osParser.SetUserAgent(userAgent);
            osParser.SetCache(cache);

            os = osParser.Parse();
        }