Simple Client Model for WorkflowActionFormAttribute
 /// <summary>
 /// Copies the base properties from a source WorkflowActionFormAttribute object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom(WorkflowActionFormAttribute source)
 {
     this.Id = source.Id;
     this.ActionFormSectionId      = source.ActionFormSectionId;
     this.AttributeId              = source.AttributeId;
     this.ColumnSize               = source.ColumnSize;
     this.FieldVisibilityRulesJSON = source.FieldVisibilityRulesJSON;
     this.ForeignGuid              = source.ForeignGuid;
     this.ForeignKey               = source.ForeignKey;
     this.HideLabel  = source.HideLabel;
     this.IsReadOnly = source.IsReadOnly;
     this.IsRequired = source.IsRequired;
     this.IsVisible  = source.IsVisible;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Order                   = source.Order;
     this.PostHtml                = source.PostHtml;
     this.PreHtml                 = source.PreHtml;
     this.WorkflowActionFormId    = source.WorkflowActionFormId;
     this.CreatedDateTime         = source.CreatedDateTime;
     this.ModifiedDateTime        = source.ModifiedDateTime;
     this.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid      = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Copies the base properties from a source WorkflowActionFormAttribute object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( WorkflowActionFormAttribute source )
 {
     this.Id = source.Id;
     this.AttributeId = source.AttributeId;
     this.HideLabel = source.HideLabel;
     this.IsReadOnly = source.IsReadOnly;
     this.IsRequired = source.IsRequired;
     this.IsVisible = source.IsVisible;
     this.Order = source.Order;
     this.PostHtml = source.PostHtml;
     this.PreHtml = source.PreHtml;
     this.WorkflowActionFormId = source.WorkflowActionFormId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Copies the base properties from a source WorkflowActionFormAttribute object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( WorkflowActionFormAttribute source )
 {
     this.Id = source.Id;
     this.AttributeId = source.AttributeId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.HideLabel = source.HideLabel;
     this.IsReadOnly = source.IsReadOnly;
     this.IsRequired = source.IsRequired;
     this.IsVisible = source.IsVisible;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Order = source.Order;
     this.PostHtml = source.PostHtml;
     this.PreHtml = source.PreHtml;
     this.WorkflowActionFormId = source.WorkflowActionFormId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }