Class DecisionModelDTO
Inheritance
DecisionModelDTO
Assembly: WMServer.dll
Syntax
public class DecisionModelDTO : DataTransferObject<DecisionModel>, IDbEntity, IWMEntity, IDecisionModelBase, IDocumented
Constructors
DecisionModelDTO()
Declaration
public DecisionModelDTO()
DecisionModelDTO(string)
Declaration
public DecisionModelDTO(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
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
Name of the Decision Model
Declaration
public string? Name { get; set; }
Property Value
OwnerID
Owner of the Decision Model
Declaration
public string OwnerID { get; set; }
Property Value
OwnerType
Declaration
public string OwnerType { get; set; }
Property Value
Summary
Short summary of this object.
Declaration
public string? Summary { get; set; }
Property Value
Methods
FromModel()
Declaration
public override void FromModel()
Overrides
Get(string, WMAppDbContext)
Declaration
public static Task<DecisionModelDTO> Get(string id, WMAppDbContext context)
Parameters
Returns
Exceptions
UpdateModel(DbContext, object[]?)
Declaration
public override Task<DecisionModel> UpdateModel(DbContext context, object[]? data = null)
Parameters
Returns
Overrides
Implements