Rock.Client.ConnectionWorkflowEntity.CopyPropertiesFrom C# (CSharp) Method

CopyPropertiesFrom() public method

Copies the base properties from a source ConnectionWorkflow object
public CopyPropertiesFrom ( ConnectionWorkflow source ) : void
source ConnectionWorkflow The source.
return void
        public void CopyPropertiesFrom( ConnectionWorkflow source )
        {
            this.Id = source.Id;
            this.ConnectionOpportunityId = source.ConnectionOpportunityId;
            this.ConnectionTypeId = source.ConnectionTypeId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.QualifierValue = source.QualifierValue;
            this.TriggerType = source.TriggerType;
            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;
        }
ConnectionWorkflowEntity