Client model for GroupRequirementType that includes all the fields that are available for GETs. Use this for GETs (use GroupRequirementTypeEntity for POST/PUTs)
Inheritance: GroupRequirementTypeEntity
コード例 #1
0
 /// <summary>
 /// Copies the base properties from a source GroupRequirementType object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( GroupRequirementType source )
 {
     this.Id = source.Id;
     this.CanExpire = source.CanExpire;
     this.CheckboxLabel = source.CheckboxLabel;
     this.DataViewId = source.DataViewId;
     this.Description = source.Description;
     this.ExpireInDays = source.ExpireInDays;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Name = source.Name;
     this.NegativeLabel = source.NegativeLabel;
     this.PositiveLabel = source.PositiveLabel;
     this.RequirementCheckType = source.RequirementCheckType;
     this.SqlExpression = source.SqlExpression;
     this.WarningDataViewId = source.WarningDataViewId;
     this.WarningLabel = source.WarningLabel;
     this.WarningSqlExpression = source.WarningSqlExpression;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }