/// <summary>
 /// Raises event 'ChangeRequired'
 /// </summary>
 protected virtual void OnChangeRequired()
 {
     if (ChangeRequired != null)
     {
         ChangeRequired.Invoke(this, System.EventArgs.Empty);
     }
 }
Example #2
0
 public Difference(bool isLeftDifferent, string name, DatabaseObjectType objectType, DifferenceOutcome outcome, ChangeRequired change)
 {
     this.IsLeftDifferent = isLeftDifferent;
     this.Name = name;
     this.ObjectType = objectType;
     this.Outcome = outcome;
     this.Change = change;
 }
Example #3
0
 public Difference(bool isLeftDifferent, string name, DatabaseObjectType objectType, DifferenceOutcome outcome, ChangeRequired change)
 {
     this.IsLeftDifferent = isLeftDifferent;
     this.Name            = name;
     this.ObjectType      = objectType;
     this.Outcome         = outcome;
     this.Change          = change;
 }