public void Update(ProductHeel productHeel)
 {
     _productHeelRepository.Update(productHeel);
 }
 public ProductHeel Add(ProductHeel productHeel)
 {
     return(_productHeelRepository.Add(productHeel));
 }