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

CopyPropertiesFrom() public method

Copies the base properties from a source MetricCategory object
public CopyPropertiesFrom ( MetricCategory source ) : void
source MetricCategory The source.
return void
        public void CopyPropertiesFrom( MetricCategory source )
        {
            this.Id = source.Id;
            this.CategoryId = source.CategoryId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.MetricId = source.MetricId;
            this.Order = source.Order;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
MetricCategoryEntity