Gets an indicator of whether or not order-lines exists for this item.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
protected bool IsOrderLinesEmpty { get; }
Visual Basic (Declaration)
Protected ReadOnly Property IsOrderLinesEmpty As Boolean
Visual C++
protected:
property bool IsOrderLinesEmpty {
	bool get ();
}

Field Value

True if there no order-lines associated with this order, otherwise false.

Remarks

Used by derived classes to check if the arraylist has values. If one were to get the OrderLines property, it would go out and get the values from the DB. However, a derived class might want to fill the array with different objects.

See Also