Esempio n. 1
0
        public List <Product> GetProductsByCategoryIdAndName(int id, String name)
        {
            ProductQuery pc = new ProductQuery(context);

            return(pc.GetByCategoryIdAndName(id, name).ToList());
        }