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

CopyPropertiesFrom() public method

Copies the base properties from a source FinancialPersonSavedAccount object
public CopyPropertiesFrom ( FinancialPersonSavedAccount source ) : void
source FinancialPersonSavedAccount The source.
return void
        public void CopyPropertiesFrom( FinancialPersonSavedAccount source )
        {
            this.Id = source.Id;
            this.FinancialGatewayId = source.FinancialGatewayId;
            this.FinancialPaymentDetailId = source.FinancialPaymentDetailId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.GroupId = source.GroupId;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.Name = source.Name;
            this.PersonAliasId = source.PersonAliasId;
            this.ReferenceNumber = source.ReferenceNumber;
            this.TransactionCode = source.TransactionCode;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
FinancialPersonSavedAccountEntity