Метод | Описание | |
---|---|---|
Add ( |
Adds the given product to this inventory if it has a quantity greater than 0.
|
|
Contains ( string product ) : bool |
Checks if this inventory contains a product by the given name.
|
|
Get ( string product, int quantity ) : |
Gets the given product from this inventory. The amount returned is equal to the specified quantity or the amount stocked by this inventory; which ever is less. The inventory has an equal amount of product removed.
|
|
Inventory ( ) : System |
A new, empty inventory.
|
|
Price ( string product ) : float |
Checks the price per unit for a product by the given name. The Raises an exception if this inventory does not contain the given product.
|
|
Quantity ( string product ) : int |
Checks the quantity of a product by the given name.
|
Метод | Описание | |
---|---|---|
CalculateTotal ( ) : void |
Calculates the total cost of all items in this inventory. TotalCost is equal to the sum of (quantity * price) for all products.
|
public Add ( |
||
product | The product to store in this inventory. | |
Результат | void |
public Contains ( string product ) : bool | ||
product | string | The name of the product to check for. |
Результат | bool |
public Get ( string product, int quantity ) : |
||
product | string | The name of the product to obtain |
quantity | int | The desired amount of product |
Результат |
public Price ( string product ) : float | ||
product | string | The name of the product to get a price per unit for |
Результат | float |
public Quantity ( string product ) : int | ||
product | string | The name of the product to check the quantity of. |
Результат | int |