XElement xmlCustomer = XElement.Load(@"..\..\customer.xml");

Console.WriteLine("Poet atribut s nzvem \"id\": {0}",
	xmlCustomer.Attributes().Where(a => a.Name == "id").Count());
Console.WriteLine("Hodnota atributu \"id\": {0}",
	xmlCustomer.Attribute("id").Value);
