Class InventoryCount
Wraps an Inventory Count.
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 InventoryCount : JTObject
Constructors
InventoryCount(Int32)
Used to update an existing inventory count.
Declaration
public InventoryCount(int inventoryCountId_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | inventoryCountId_ | Identifies the inventory count. |
InventoryCount(String)
Used to create a new inventory count.
Declaration
public InventoryCount(string inventoryCountName_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | inventoryCountName_ | Name of the new inventory count |
Properties
Frozen
Indicates whether or not this inventory count is frozen. (Updating this property will clear the FrozenBy and FrozenTimestamp properties.)
Declaration
public bool Frozen { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
FrozenBy
If this inventory count has been frozen, indicates who froze it.
Declaration
public string FrozenBy { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
FrozenTimestamp
If this inventory count has been frozen, indicates the date it was frozen.
Declaration
public DateTime? FrozenTimestamp { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.DateTime> |
InventoryCountId
Identifies the inventory count.
Declaration
public int InventoryCountId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
InventoryCountName
Name of the inventory count.
Declaration
public string InventoryCountName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |