// POST: api/Products
 public void Post([FromBody] ProductView product)
 {
     _catalogService.AddProduct(product);
 }