AdventureWorks.WebServices.Repositories.ProductRepository.GetTodaysDealsProducts C# (CSharp) 메소드

GetTodaysDealsProducts() 공개 메소드

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