Пример #1
0
 public Enhancement(string title, string description, string changedParameter,
                    string changedOldValue, string changedNewValue, IEnhancer enhancer
                    )
 {
     this.Title       = title;
     this.Description = description;
     this.Changed     = new Enhancers.Enhancement.Change()
     {
         ParameterName = changedParameter,
         PreviousValue = changedOldValue,
         NewValue      = changedNewValue
     };
     this.EnhancerType = enhancer.GetType().FullName;
 }