public List <Product> SelectByCat(int id) { var productDac = new ProductDAC(); var result = productDac.SelectByCat(id); return(result); }