Client model for ConnectionRequestWorkflow that includes all the fields that are available for GETs. Use this for GETs (use ConnectionRequestWorkflowEntity for POST/PUTs)
Inheritance: ConnectionRequestWorkflowEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source ConnectionRequestWorkflow object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom(ConnectionRequestWorkflow source)
 {
     this.Id = source.Id;
     this.ConnectionRequestId  = source.ConnectionRequestId;
     this.ConnectionWorkflowId = source.ConnectionWorkflowId;
     this.ForeignGuid          = source.ForeignGuid;
     this.ForeignKey           = source.ForeignKey;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.TriggerQualifier        = source.TriggerQualifier;
     this.TriggerType             = source.TriggerType;
     this.WorkflowId              = source.WorkflowId;
     this.CreatedDateTime         = source.CreatedDateTime;
     this.ModifiedDateTime        = source.ModifiedDateTime;
     this.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid      = source.Guid;
     this.ForeignId = source.ForeignId;
 }
 /// <summary>
 /// Copies the base properties from a source ConnectionRequestWorkflow object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( ConnectionRequestWorkflow source )
 {
     this.Id = source.Id;
     this.ConnectionRequestId = source.ConnectionRequestId;
     this.ConnectionWorkflowId = source.ConnectionWorkflowId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.TriggerQualifier = source.TriggerQualifier;
     this.TriggerType = source.TriggerType;
     this.WorkflowId = source.WorkflowId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }