Esempio n. 1
0
 public IActionResult UpdateInventory(Inventory inventory)
 {
     try
     {
         inventoryServices.UpdateInventory(inventory);
         return(CreatedAtAction("UpdateInventory", inventory));
     }
     catch (Exception)
     {
         return(BadRequest());
     }
 }