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

CopyPropertiesFrom() public method

Copies the base properties from a source EventItemOccurrenceChannelItem object
public CopyPropertiesFrom ( EventItemOccurrenceChannelItem source ) : void
source EventItemOccurrenceChannelItem The source.
return void
        public void CopyPropertiesFrom( EventItemOccurrenceChannelItem source )
        {
            this.Id = source.Id;
            this.ContentChannelItemId = source.ContentChannelItemId;
            this.EventItemOccurrenceId = source.EventItemOccurrenceId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
EventItemOccurrenceChannelItemEntity