Class DecisionModelElement
All classes that represent elements of a DecisionModel must inherit from this class.
Inheritance
DecisionModelElement
Assembly: WMServer.dll
Syntax
[HasDTO(typeof(DecisionModelElementDTO))]
public class DecisionModelElement : DecisionModelBase, IDecisionModelBase, IDocumented, IDbEntity, IWMEntity
Constructors
DecisionModelElement()
Declaration
public DecisionModelElement()
DecisionModelElement(string)
Declaration
public DecisionModelElement(string id)
Parameters
Type |
Name |
Description |
string |
id |
|
Properties
FullyQualifiedName
Declaration
[NotMapped]
public string FullyQualifiedName { get; }
Property Value
Identifier
Declaration
public string? Identifier { get; set; }
Property Value
Model
Declaration
public DecisionModel? Model { get; set; }
Property Value
Parent
Reference to the parent model element's ID.
Declaration
public DecisionModelElement? Parent { get; set; }
Property Value
Role
Declaration
public string? Role { get; set; }
Property Value
Methods
Get(DecisionModel, WMAppDbContext)
Declaration
public static Task<ICollection<DecisionModelElement>> Get(DecisionModel model, WMAppDbContext context)
Parameters
Returns
Implements