Show / Hide Table of Contents

Class SerialNumberImport

Wraps a serial number import

Inheritance
System.Object
JTObject
SerialNumberImport
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 SerialNumberImport : JTObject

Constructors

SerialNumberImport(PurchaseProductVariant)

Used to create a new import serial number. The SerialNumber property will be set to an unitialized SerialNumber object.

Declaration
public SerialNumberImport(PurchaseProductVariant purchaseProductVariant_)
Parameters
Type Name Description
PurchaseProductVariant purchaseProductVariant_

Identifies either the purchase product variant on which the new import should be based.

SerialNumberImport(Int32)

Used to update an existing serial number. The SerialNumber property will be set to an unitialized SerialNumber object.

Declaration
public SerialNumberImport(int serialNumberImportId_)
Parameters
Type Name Description
System.Int32 serialNumberImportId_

Identifies either the an existing import serial number.

Properties

CreationDate

The creation date.

Declaration
public DateTime CreationDate { get; set; }
Property Value
Type Description
System.DateTime

IsRemnant

Indicates whether the serial number is a remnant.

Declaration
public bool IsRemnant { get; set; }
Property Value
Type Description
System.Boolean

Measurements

Set of measurements for this import serial number.

Declaration
public MeasurementContainer Measurements { get; }
Property Value
Type Description
MeasurementContainer

Quantity

Quantity of the product.

Declaration
public decimal Quantity { get; set; }
Property Value
Type Description
System.Decimal

SerialNumber

Serial number.

Declaration
public SerialNumber SerialNumber { get; }
Property Value
Type Description
SerialNumber

SerialNumberImportId

Identifies the Import serial number.

Declaration
public int SerialNumberImportId { get; }
Property Value
Type Description
System.Int32

UnitCost

Unit cost.

Declaration
public decimal UnitCost { get; set; }
Property Value
Type Description
System.Decimal
Back to top Generated by DocFX