XElement xmlCustomers = XElement.Load(@"..\..\Customers.xml");

foreach (var descendant in xmlCustomers.Descendants()) {
Console.WriteLine("=> Element: {0}\n{1}",
	descendant.Name, descendant);
}
