AdventureWorks.WebServices.Controllers.ProductController.GetProducts C# (CSharp) Method

GetProducts() public method

public GetProducts ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Product> GetProducts()
        {
            return _productRepository.GetProducts();
        }

Same methods

ProductController::GetProducts ( int categoryId ) : IEnumerable