public static void WriteToXml(this Sitemap sitemap, string filePath)
 {
     WriteToXml(Sitemap.RootElementName, SitemapNamespace.Namespace, filePath, sitemap, sitemap.Namespaces);
 }
        private void WriteSitemap(Models.Sitemap sitemap, Guid website)
        {
            var filePath = Path.Combine(Config.GetWorkingDirectory(website), sitemap.Name);

            sitemap.WriteToXml(filePath);
        }