AdventureWorks.WebServices.Repositories.AddressRepository.GetAll C# (CSharp) Method

GetAll() public method

public GetAll ( string userName ) : IEnumerable
userName string
return IEnumerable
        public IEnumerable<Address> GetAll(string userName)
        {
            return _addressesDictionary.ContainsKey(userName) ? _addressesDictionary[userName] : null;
        }