Ejemplo n.º 1
0
        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>());
        }
Ejemplo n.º 2
0
 public IList <PhoneNumberInformation> GetPhoneNumberInfosForLocation(LocationInformation country)
 {
     return(this.PhoneNumberStore.GetPhoneNumberInfosForLocation(country));
 }