public IList <PhoneNumberInformation> GetPhoneNumberInfosForLocation(LocationInformation location) { XElement locationElement = this.GetLocationElement(location.Identifier); if (locationElement != null) { return((IList <PhoneNumberInformation>) this.ExtractPhoneNumberInfo(locationElement)); } return((IList <PhoneNumberInformation>) new List <PhoneNumberInformation>()); }
public IList <PhoneNumberInformation> GetPhoneNumberInfosForLocation(LocationInformation country) { return(this.PhoneNumberStore.GetPhoneNumberInfosForLocation(country)); }