Data.ProductsRepository.Get C# (CSharp) Method

Get() public method

public Get ( ) : List
return List
        public List<Product> Get()
        {
            var content = httpHelpers.GetHttpContent(string.Format("{0}/{1}", restService, apiPath));
               return serializer.DeSerialize<List<Product>>(content) as List<Product>;
        }

Same methods

ProductsRepository::Get ( int id ) : Product
ProductsRepository::Get ( string name ) : Product