Methods Summary |
---|
public int | getId()
This will return this order's ID.
return id;
|
public java.lang.String | getManufacturerName()
This will return this order's manufacturer.
return manufacturerName;
|
public java.lang.String | getProductName()
This will return this order's product name.
return productName;
|
public float | getPurchasePrice()
This will return this order's purchase price.
return purchasePrice;
|
public java.lang.String | getSku()
This will return this order's SKU.
return sku;
|
public Stock | getStock()
This will return this order's {@link Stock} item.
return stock;
|
public void | setId(int id)
This will set the ID for this order.
this.id = id;
|
public void | setManufacturerName(java.lang.String manufacturerName)
This will set the manufacturer name for this order.
this.manufacturerName = manufacturerName;
|
public void | setProductName(java.lang.String productName)
This will set the product name for this order.
this.productName = productName;
|
public void | setPurchasePrice(float purchasePrice)
This will set the purcahse price for this order.
this.purchasePrice = purchasePrice;
|
public void | setSku(java.lang.String sku)
This will set the SKU for this order.
this.sku = sku;
|
public void | setStock(Stock stock)
This will set the {@link Stock} item for this order.
this.stock = stock;
|