/// <summary> /// Copies the base properties from a source WorkflowAction object /// </summary> /// <param name="source">The source.</param> public void CopyPropertiesFrom( WorkflowAction source ) { this.Id = source.Id; this.ActionTypeId = source.ActionTypeId; this.ActivityId = source.ActivityId; this.CompletedDateTime = source.CompletedDateTime; this.FormAction = source.FormAction; this.LastProcessedDateTime = source.LastProcessedDateTime; this.Guid = source.Guid; this.ForeignId = source.ForeignId; }
/// <summary> /// Copies the base properties from a source WorkflowAction object /// </summary> /// <param name="source">The source.</param> public void CopyPropertiesFrom( WorkflowAction source ) { this.Id = source.Id; this.ActionTypeId = source.ActionTypeId; this.ActivityId = source.ActivityId; this.CompletedDateTime = source.CompletedDateTime; this.ForeignGuid = source.ForeignGuid; this.ForeignKey = source.ForeignKey; this.FormAction = source.FormAction; this.LastProcessedDateTime = source.LastProcessedDateTime; this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated; this.CreatedDateTime = source.CreatedDateTime; this.ModifiedDateTime = source.ModifiedDateTime; this.CreatedByPersonAliasId = source.CreatedByPersonAliasId; this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId; this.Guid = source.Guid; this.ForeignId = source.ForeignId; }