/// <summary>
 /// Creates a new BallotFactory.
 /// </summary>
 public BallotFactory()
 {
     Ballots = new DeduplicatorHashSet <Ballot>();
     Votes   = new DeduplicatorHashSet <Vote>();
 }
Beispiel #2
0
 public AbstractPeopleFactory()
 {
     People = new DeduplicatorHashSet <Person>(FetchPersonProxy);
 }