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

CopyPropertiesFrom() public method

Copies the base properties from a source BackgroundCheck object
public CopyPropertiesFrom ( BackgroundCheck source ) : void
source BackgroundCheck The source.
return void
        public void CopyPropertiesFrom( BackgroundCheck source )
        {
            this.Id = source.Id;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.PersonAliasId = source.PersonAliasId;
            this.RecordFound = source.RecordFound;
            this.RequestDate = source.RequestDate;
            this.ResponseDate = source.ResponseDate;
            this.ResponseDocumentId = source.ResponseDocumentId;
            this.ResponseXml = source.ResponseXml;
            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;
        }
BackgroundCheckEntity