public Product GetById(int id)
 {
     return(_productDal.GeT(p => p.ProductId == id));
 }