Class InventoryLocation
Wraps an inventory location.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class InventoryLocation : JTObject
Constructors
InventoryLocation(Int32)
Creates an object intended to be used to update a inventory location.
Declaration
public InventoryLocation(int inventoryLocationId_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | inventoryLocationId_ | Identifies an existing inventory location |
InventoryLocation(String)
Creates an object intended to be used to create a new inventory location.
Declaration
public InventoryLocation(string inventoryLocationName_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | inventoryLocationName_ | Name of the new inventory location. |
Properties
InventoryLocationId
Identifies the inventory location.
Declaration
public int InventoryLocationId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
InventoryLocationName
Name of the inventory location.
Declaration
public string InventoryLocationName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
IsInactive
Indicates whether the inventory location has been marked inactive.
Declaration
public bool IsInactive { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |