public Entities.Product GetProductById(int id)
 {
     _da = new ProductDataAccess();
     return _da.GetProductById(id);
 }