void WPServiceClient_GetAttractionByIdCompleted(object sender, GetAttractionByIdCompletedEventArgs e)
        {
            var attraction = e.Result;

            Id             = attraction.ID;
            Name           = attraction.Name;
            Country        = attraction.Country.Name;
            Region         = attraction.Address.Region;
            City           = attraction.Address.City;
            Street         = attraction.Address.Street;
            BuildingNumber = attraction.Address.BuildingNumber;
            Description    = attraction.Description;
            Reviews        = attraction.Reviews;
        }
 void WPServiceClient_GetAttractionByIdCompleted(object sender, GetAttractionByIdCompletedEventArgs e)
 {
     var attraction = e.Result;
     Id = attraction.ID;
     Name = attraction.Name;
     Country = attraction.Country.Name;
     Region = attraction.Address.Region;
     City = attraction.Address.City;
     Street = attraction.Address.Street;
     BuildingNumber = attraction.Address.BuildingNumber;
     Description = attraction.Description;
     Reviews = attraction.Reviews;
 }