public void CompareSetToInstance(Table table)
 {
     try
     {
         table.CompareToDynamicSet(State.OriginalSet);
     }
     catch (DynamicSetComparisonException ex) 
     {
         ScenarioContext.Current.Add(EXCEPTION_KEY, ex);
     }
 }
 public void b(Table table)
 {
     table.CompareToDynamicSet(State.OriginalSet);
 }
 public void ThenTheFollowingItemsShouldBeInTheList(Table table)
 {
     if (_people != null)
         table.CompareToSet(_people);
     else if (_nullableTypeTesters != null)
         table.CompareToSet(_nullableTypeTesters);
     else if (_dynamicDictionaries != null)
         table.CompareToDynamicSet(_dynamicDictionaries);
     else
         Assert.Fail("No items were found for comparison.");
 }