/// <summary> /// Copies the base properties from a source Workflow object /// </summary> /// <param name="source">The source.</param> public void CopyPropertiesFrom( Workflow source ) { this.Id = source.Id; this.ActivatedDateTime = source.ActivatedDateTime; this.CompletedDateTime = source.CompletedDateTime; this.Description = source.Description; this.InitiatorPersonAliasId = source.InitiatorPersonAliasId; this.IsProcessing = source.IsProcessing; this.LastProcessedDateTime = source.LastProcessedDateTime; this.Name = source.Name; this.Status = source.Status; this.WorkflowTypeId = source.WorkflowTypeId; this.Guid = source.Guid; this.ForeignId = source.ForeignId; }
/// <summary> /// Copies the base properties from a source Workflow object /// </summary> /// <param name="source">The source.</param> public void CopyPropertiesFrom( Workflow source ) { this.Id = source.Id; this.ActivatedDateTime = source.ActivatedDateTime; this.CompletedDateTime = source.CompletedDateTime; this.Description = source.Description; this.ForeignGuid = source.ForeignGuid; this.ForeignKey = source.ForeignKey; this.InitiatorPersonAliasId = source.InitiatorPersonAliasId; this.IsProcessing = source.IsProcessing; this.LastProcessedDateTime = source.LastProcessedDateTime; this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated; this.Name = source.Name; this.Status = source.Status; this.WorkflowIdNumber = source.WorkflowIdNumber; this.WorkflowTypeId = source.WorkflowTypeId; this.CreatedDateTime = source.CreatedDateTime; this.ModifiedDateTime = source.ModifiedDateTime; this.CreatedByPersonAliasId = source.CreatedByPersonAliasId; this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId; this.Guid = source.Guid; this.ForeignId = source.ForeignId; }