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