示例#1
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;
 }
示例#2
0
 public TableDifference(bool isLeftDifferent, string name, DatabaseObjectType objectType, DifferenceOutcome outcome) : base(isLeftDifferent, name, objectType, outcome)
 {
 }
示例#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;
 }
示例#4
0
 public TableDifference(bool isLeftDifferent, string name, DatabaseObjectType objectType, DifferenceOutcome outcome)
     : base(isLeftDifferent, name, objectType, outcome)
 {
 }