Client model for ServiceLog that includes all the fields that are available for GETs. Use this for GETs (use ServiceLogEntity for POST/PUTs)
Inheritance: ServiceLogEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source ServiceLog object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom(ServiceLog source)
 {
     this.Id          = source.Id;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey  = source.ForeignKey;
     this.Input       = source.Input;
     this.LogDateTime = source.LogDateTime;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Name                    = source.Name;
     this.Result                  = source.Result;
     this.Success                 = source.Success;
     this.Type                    = source.Type;
     this.CreatedDateTime         = source.CreatedDateTime;
     this.ModifiedDateTime        = source.ModifiedDateTime;
     this.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid                    = source.Guid;
     this.ForeignId               = source.ForeignId;
 }
Example #2
0
 /// <summary>
 /// Copies the base properties from a source ServiceLog object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( ServiceLog source )
 {
     this.Id = source.Id;
     this.Input = source.Input;
     this.LogDateTime = source.LogDateTime;
     this.Name = source.Name;
     this.Result = source.Result;
     this.Success = source.Success;
     this.Type = source.Type;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Example #3
0
 /// <summary>
 /// Copies the base properties from a source ServiceLog object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( ServiceLog source )
 {
     this.Id = source.Id;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.Input = source.Input;
     this.LogDateTime = source.LogDateTime;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Name = source.Name;
     this.Result = source.Result;
     this.Success = source.Success;
     this.Type = source.Type;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }