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