/// <summary> /// Instantiated a new instance of the <see cref="AttributeValueInteger"/> class /// </summary> /// <param name="attributeDefinition">The <see cref="AttributeDefinitionInteger"/> for which this is the default value</param> /// <remarks> /// This constructor shall be used when setting the default value of an <see cref="AttributeDefinitionInteger"/> /// </remarks> internal AttributeValueInteger(AttributeDefinitionInteger attributeDefinition) : base(attributeDefinition) { this.OwningDefinition = attributeDefinition; }
/// <summary> /// Instantiated a new instance of the <see cref="AttributeValueInteger"/> class /// </summary> /// <param name="attributeDefinition">The <see cref="AttributeDefinitionInteger"/> for which this is the default value</param> /// <remarks> /// This constructor shall be used when setting the default value of an <see cref="AttributeDefinitionInteger"/> /// </remarks> /// <param name="loggerFactory"> /// The (injected) <see cref="ILoggerFactory"/> used to setup logging /// </param> internal AttributeValueInteger(AttributeDefinitionInteger attributeDefinition, ILoggerFactory loggerFactory) : base(attributeDefinition, loggerFactory) { this.OwningDefinition = attributeDefinition; }