AdventureWorks.WebServices.Repositories.ProductRepository.GetTodaysDealsProducts C# (CSharp) Метод

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

public GetTodaysDealsProducts ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<Product> GetTodaysDealsProducts()
        {
            lock (_todaysDealsProducts)
            {
                return _todaysDealsProducts.ToArray();
            }
        }