Client model for Interaction that includes all the fields that are available for GETs. Use this for GETs (use InteractionEntity for POST/PUTs)
Inheritance: InteractionEntity
コード例 #1
0
ファイル: Interaction.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Copies the base properties from a source Interaction object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( Interaction source )
 {
     this.Id = source.Id;
     this.EntityId = source.EntityId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.InteractionComponentId = source.InteractionComponentId;
     this.InteractionData = source.InteractionData;
     this.InteractionDateTime = source.InteractionDateTime;
     this.InteractionSessionId = source.InteractionSessionId;
     this.InteractionSummary = source.InteractionSummary;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Operation = source.Operation;
     this.PersonAliasId = source.PersonAliasId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }