Class CleaningProcessItemViewModel
Viewmodel for the cleaning process item
Inheritance
System.Object
CleaningProcessItemViewModel
Implements
IWindowViewModel<CleaningProcessItem>
Namespace: Simplic.PlugIn.Logistics.Disposition
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public class CleaningProcessItemViewModel : ExtendableViewModel
Properties
| Improve this Doc View SourceArticleGroupId
Gets or sets the allowed article group
Declaration
public Guid? ArticleGroupId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
ArticleId
Gets or sets the assigned article
Declaration
public Guid? ArticleId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Guid
Gets or sets the unique id
Declaration
public Guid Guid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsArticleEnabled
Gets the read only flag for the article control
Declaration
public bool IsArticleEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsBillable
Gets or sets if this item is billable
Declaration
public bool IsBillable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ItemName
Gets or sets the name of the item
Declaration
public string ItemName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LookupParametersArticle
Gets the article group parameter
Declaration
public IDictionary<string, object> LookupParametersArticle { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Model
Gets or sets the model
Declaration
public CleaningProcessItem Model { get; set; }
Property Value
Type | Description |
---|---|
CleaningProcessItem |
Number
gets or sets the number
Declaration
public int Number { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Quantity
Gets or sets the quantity of the item
Declaration
public PreciseDecimal Quantity { get; set; }
Property Value
Type | Description |
---|---|
PreciseDecimal |
Methods
| Improve this Doc View SourceInitialize(CleaningProcessItem)
Declaration
public void Initialize(CleaningProcessItem model)
Parameters
Type | Name | Description |
---|---|---|
CleaningProcessItem | model |
Implements
IWindowViewModel<>