AdventureWorks.WebServices.Repositories.ProductRepository.GetTodaysDealsProducts C# (CSharp) Method

GetTodaysDealsProducts() public method

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