public AttributeValueTransformer(string xpath, string attributeName, string newValue, AttributeValueChangeType changeType = null)
 {
     this.Xpath = xpath;
     this.AttributeName = attributeName;
     this.NewValue = newValue;
     this.ChangeType = changeType ?? AttributeValueChangeType.Replace;
 }
 public AttributeValueTransformer(string xpath, string attributeName, string newValue, AttributeValueChangeType changeType = null)
 {
     this.Xpath         = xpath;
     this.AttributeName = attributeName;
     this.NewValue      = newValue;
     this.ChangeType    = changeType ?? AttributeValueChangeType.Replace;
 }