@Override
 public Product addProduct(
     String name,
     String details,
     double price,
     String manufacturer,
     Date creation,
     ProductImage productImage) {
   return productService.addProduct(name, details, price, manufacturer, creation, productImage);
 }