AdventureWorks.WebServices.Repositories.PaymentMethodRepository.GetAll C# (CSharp) Метод

GetAll() публичный Метод

public GetAll ( string userName ) : IEnumerable
userName string
Результат IEnumerable
        public IEnumerable<PaymentMethod> GetAll(string userName)
        {
            return _paymentMethodsDictionary.ContainsKey(userName) ? _paymentMethodsDictionary[userName] : null;
        }