Class EquipmentItem
Core class which represents an equipment containing all data
Inheritance
Inherited Members
Namespace: Simplic.PlugIn.Logistics
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public abstract class EquipmentItem
Constructors
| Improve this Doc View SourceEquipmentItem()
Initialize a new equipment
Declaration
public EquipmentItem()
EquipmentItem(IT_Vehicle_EquipmentItem)
Initialize a new equipment using a IT_Vehicle_EquipmentItem holding the data to use
Declaration
public EquipmentItem(IT_Vehicle_EquipmentItem dbEquipmentItem)
Parameters
Type | Name | Description |
---|---|---|
IT_Vehicle_EquipmentItem | dbEquipmentItem |
Properties
| Improve this Doc View SourceAdditionalProperties
returns a dictionary of all additional properties for this equipment item
Declaration
public Dictionary<string, EquipmentProperty> AdditionalProperties { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, EquipmentProperty> |
Count
Gets the number of the equipment items of this type with the same identifier
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
DbEquipment
Declaration
public IT_Vehicle_EquipmentItem DbEquipment { get; }
Property Value
Type | Description |
---|---|
IT_Vehicle_EquipmentItem |
EquipmentTypeId
Gets the identifier of the equipment type
Declaration
public abstract Guid EquipmentTypeId { get; }
Property Value
Type | Description |
---|---|
System.Guid |
EquipmentTypeName
Gets the name of the equipment type
Declaration
public string EquipmentTypeName { get; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets or sets the unique identifier of the instance
Declaration
public Guid Id { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Identifier
Gets an identifying value for the instance, enabling an user to distinguish between multiple instances of the same equipment type
Declaration
public string Identifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IdentifierName
Gets the name of the identifier whose value enables an user to distinguish between multiple instances of the same equipment type
Declaration
public string IdentifierName { get; }
Property Value
Type | Description |
---|---|
System.String |
IsDeleted
Gets or sets the IsDeleted flag of the instance
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remark
Gets or sets the remark of the instance
Declaration
public string Remark { get; set; }
Property Value
Type | Description |
---|---|
System.String |