Client model for DefinedValue that includes all the fields that are available for GETs. Use this for GETs (use DefinedValueEntity for POST/PUTs)
Inheritance: DefinedValueEntity
Esempio n. 1
0
 /// <summary>
 /// Copies the base properties from a source DefinedValue object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( DefinedValue source )
 {
     this.Id = source.Id;
     this.DefinedTypeId = source.DefinedTypeId;
     this.Description = source.Description;
     this.IsSystem = source.IsSystem;
     this.Order = source.Order;
     this.Value = source.Value;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Esempio n. 2
0
 /// <summary>
 /// Copies the base properties from a source DefinedValue object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( DefinedValue source )
 {
     this.Id = source.Id;
     this.DefinedTypeId = source.DefinedTypeId;
     this.Description = source.Description;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Order = source.Order;
     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;
 }