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

GetAll() public method

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