Client model for WorkflowTrigger that includes all the fields that are available for GETs. Use this for GETs (use WorkflowTriggerEntity for POST/PUTs)
Inheritance: WorkflowTriggerEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source WorkflowTrigger object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom(WorkflowTrigger source)
 {
     this.Id           = source.Id;
     this.EntityTypeId = source.EntityTypeId;
     this.EntityTypeQualifierColumn        = source.EntityTypeQualifierColumn;
     this.EntityTypeQualifierValue         = source.EntityTypeQualifierValue;
     this.EntityTypeQualifierValuePrevious = source.EntityTypeQualifierValuePrevious;
     this.ForeignGuid         = source.ForeignGuid;
     this.ForeignKey          = source.ForeignKey;
     this.IsActive            = source.IsActive;
     this.IsSystem            = source.IsSystem;
     this.WorkflowName        = source.WorkflowName;
     this.WorkflowTriggerType = source.WorkflowTriggerType;
     this.WorkflowTypeId      = source.WorkflowTypeId;
     this.Guid      = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Example #2
0
 /// <summary>
 /// Copies the base properties from a source WorkflowTrigger object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( WorkflowTrigger source )
 {
     this.Id = source.Id;
     this.EntityTypeId = source.EntityTypeId;
     this.EntityTypeQualifierColumn = source.EntityTypeQualifierColumn;
     this.EntityTypeQualifierValue = source.EntityTypeQualifierValue;
     this.EntityTypeQualifierValuePrevious = source.EntityTypeQualifierValuePrevious;
     this.IsActive = source.IsActive;
     this.IsSystem = source.IsSystem;
     this.WorkflowName = source.WorkflowName;
     this.WorkflowTriggerType = source.WorkflowTriggerType;
     this.WorkflowTypeId = source.WorkflowTypeId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }