Client model for SystemEmail that includes all the fields that are available for GETs. Use this for GETs (use SystemEmailEntity for POST/PUTs)
상속: SystemEmailEntity
예제 #1
0
 /// <summary>
 /// Copies the base properties from a source SystemEmail object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( SystemEmail source )
 {
     this.Id = source.Id;
     this.Bcc = source.Bcc;
     this.Body = source.Body;
     this.CategoryId = source.CategoryId;
     this.Cc = source.Cc;
     this.From = source.From;
     this.FromName = source.FromName;
     this.IsSystem = source.IsSystem;
     this.Subject = source.Subject;
     this.Title = source.Title;
     this.To = source.To;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
예제 #2
0
 /// <summary>
 /// Copies the base properties from a source SystemEmail object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( SystemEmail source )
 {
     this.Id = source.Id;
     this.Bcc = source.Bcc;
     this.Body = source.Body;
     this.CategoryId = source.CategoryId;
     this.Cc = source.Cc;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.From = source.From;
     this.FromName = source.FromName;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Subject = source.Subject;
     this.Title = source.Title;
     this.To = source.To;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }