Beispiel #1
0
 /**
  *
  * @param <Inventory> $inventory
  * @return <Inventory>
  */
 public function addToInventory($inventory)
 {
     $inventoryDao = new InventoryDAO();
     $inventoryRet = $inventoryDao->addToInventory($inventory);
     return $inventoryRet;
 }