XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load(@"..\..\customerFromSourceToDestination.xslt");
xslt.Transform(sourceXmlCustomers.CreateNavigator(), null, Console.Out);
