Client model for AttributeValue that includes all the fields that are available for GETs. Use this for GETs (use AttributeValueEntity for POST/PUTs)
Inheritance: AttributeValueEntity
Beispiel #1
0
 /// <summary>
 /// Copies the base properties from a source AttributeValue object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( AttributeValue source )
 {
     this.Id = source.Id;
     this.AttributeId = source.AttributeId;
     this.EntityId = source.EntityId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Value = source.Value;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Beispiel #2
0
 /// <summary>
 /// Copies the base properties from a source AttributeValue object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( AttributeValue source )
 {
     this.Id = source.Id;
     this.AttributeId = source.AttributeId;
     this.EntityId = source.EntityId;
     this.IsSystem = source.IsSystem;
     this.Value = source.Value;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }