Client model for History that includes all the fields that are available for GETs. Use this for GETs (use HistoryEntity for POST/PUTs)
Inheritance: HistoryEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source History object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( History source )
 {
     this.Id = source.Id;
     this.Caption = source.Caption;
     this.CategoryId = source.CategoryId;
     this.EntityId = source.EntityId;
     this.EntityTypeId = source.EntityTypeId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.RelatedData = source.RelatedData;
     this.RelatedEntityId = source.RelatedEntityId;
     this.RelatedEntityTypeId = source.RelatedEntityTypeId;
     this.Summary = source.Summary;
     this.Verb = source.Verb;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }