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

CopyPropertiesFrom() public method

Copies the base properties from a source FinancialPledge object
public CopyPropertiesFrom ( FinancialPledge source ) : void
source FinancialPledge The source.
return void
        public void CopyPropertiesFrom( FinancialPledge source )
        {
            this.Id = source.Id;
            this.AccountId = source.AccountId;
            this.EndDate = source.EndDate;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.GroupId = source.GroupId;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.PersonAliasId = source.PersonAliasId;
            this.PledgeFrequencyValueId = source.PledgeFrequencyValueId;
            this.StartDate = source.StartDate;
            this.TotalAmount = source.TotalAmount;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
FinancialPledgeEntity