public BubbleNotifyPropertyChangedAspect(string fieldName, NotifyPropertyChangedAttribute parent,
                                          bool enableLogging)
 {
     AspectPriority = parent.AspectPriority;
 }
 public BubbleNotifyPropertyChangedAspect(string fieldName, NotifyPropertyChangedAttribute parent,
                                          bool enableLogging)
 {
     AspectPriority = parent.AspectPriority;
 }
 /// <summary>
 /// Initializes a new <see cref="OnNotifyPropertyChangedAspect"/>.
 /// </summary>
 /// <param name="propertyName">Name of the property to which this set accessor belong.</param>
 /// <param name="parent">Parent <see cref="NotifyPropertyChangedAttribute"/>.</param>
 public OnNotifyPropertyChangedAspect(string propertyName, NotifyPropertyChangedAttribute parent, bool logging)
 {
     AspectPriority = parent.AspectPriority;
     this.propertyName = propertyName;
     this.logging = logging;
 }
 /// <summary>
 /// Initializes a new <see cref="OnNotifyPropertyChangedAspect"/>.
 /// </summary>
 /// <param name="propertyName">Name of the property to which this set accessor belong.</param>
 /// <param name="parent">Parent <see cref="NotifyPropertyChangedAttribute"/>.</param>
 public OnNotifyPropertyChangedAspect(string propertyName, NotifyPropertyChangedAttribute parent, bool logging)
 {
     AspectPriority    = parent.AspectPriority;
     this.propertyName = propertyName;
     this.logging      = logging;
 }