public Product GetProductByName(string name) { var query = from p in ProductMapper.GetAllProducts() where p.ProductType == name select p; return(query.FirstOrDefault()); }
public IEnumerable <Product> GetAllProducts() { return(ProductMapper.GetAllProducts()); }