Simple Client Model for BlockType
Example #1
0
 /// <summary>
 /// Copies the base properties from a source BlockType object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( BlockType source )
 {
     this.Id = source.Id;
     this.Category = source.Category;
     this.Description = source.Description;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Name = source.Name;
     this.Path = source.Path;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }