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

CopyPropertiesFrom() public method

Copies the base properties from a source FinancialTransaction object
public CopyPropertiesFrom ( FinancialTransaction source ) : void
source FinancialTransaction The source.
return void
        public void CopyPropertiesFrom( FinancialTransaction source )
        {
            this.Id = source.Id;
            this.AuthorizedPersonAliasId = source.AuthorizedPersonAliasId;
            this.BatchId = source.BatchId;
            this.CheckMicrEncrypted = source.CheckMicrEncrypted;
            this.CheckMicrHash = source.CheckMicrHash;
            this.CheckMicrParts = source.CheckMicrParts;
            this.FinancialGatewayId = source.FinancialGatewayId;
            this.FinancialPaymentDetailId = source.FinancialPaymentDetailId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.MICRStatus = source.MICRStatus;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.ProcessedByPersonAliasId = source.ProcessedByPersonAliasId;
            this.ProcessedDateTime = source.ProcessedDateTime;
            this.ScheduledTransactionId = source.ScheduledTransactionId;
            this.SourceTypeValueId = source.SourceTypeValueId;
            this.Status = source.Status;
            this.StatusMessage = source.StatusMessage;
            this.Summary = source.Summary;
            this.TransactionCode = source.TransactionCode;
            this.TransactionDateTime = source.TransactionDateTime;
            this.TransactionTypeValueId = source.TransactionTypeValueId;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
FinancialTransactionEntity