Class DecisionModelBase
Base class implementing the common characteristics of many of the entities that make up the application object model for Decision Models.
Inheritance
DecisionModelBase
Assembly: WMServer.dll
Syntax
public abstract class DecisionModelBase : IWMEntity, IDecisionModelBase, IDocumented
Constructors
DecisionModelBase()
Declaration
public DecisionModelBase()
DecisionModelBase(string)
Declaration
public DecisionModelBase(string id)
Parameters
Type |
Name |
Description |
string |
id |
|
Properties
CreatedBy
ID of the user that created this entity.
Declaration
public string CreatedBy { get; set; }
Property Value
CreatedDate
Date and time at which this entity was last updated.
Declaration
public DateTime CreatedDate { get; set; }
Property Value
Documentation
Longer, formatted description of this object
Declaration
public string? Documentation { get; set; }
Property Value
DocumentationMIMEType
Declaration
public string? DocumentationMIMEType { get; set; }
Property Value
ID
Declaration
public string ID { get; protected set; }
Property Value
LastUpdatedBy
ID of the user that last updated this entity.
Declaration
public string LastUpdatedBy { get; set; }
Property Value
LastUpdatedDate
Date and time at which this entity was last updated.
Declaration
public DateTime LastUpdatedDate { get; set; }
Property Value
Name
Declaration
public string? Name { get; set; }
Property Value
Summary
Short summary of this object.
Declaration
public string? Summary { get; set; }
Property Value
Methods
Create(Type, string?)
Declaration
public static DecisionModelBase Create(Type elemType, string? id = null)
Parameters
Returns
Implements