AdventureWorks.WebServices.Repositories.ProductRepository.GetTodaysDealsProducts C# (CSharp) Méthode

GetTodaysDealsProducts() public méthode

public GetTodaysDealsProducts ( ) : IEnumerable
Résultat IEnumerable
        public IEnumerable<Product> GetTodaysDealsProducts()
        {
            lock (_todaysDealsProducts)
            {
                return _todaysDealsProducts.ToArray();
            }
        }