Exemple #1
0
 /// <summary>
 /// Initializes a new, empty collection of <see cref="StatementOfNeed"/> records with a predefined initial capacity.
 /// <param name="capacity">The number of statements of need that the collection can initially store.</param>
 /// </summary>
 public StatementOfNeedHistory(int capacity)
 {
     _general = new SubmissionHistory <StatementOfNeed>(capacity);
     _primary = new SubmissionHistory <StatementOfNeed>(capacity);
 }
 /// <summary>
 /// Initializes a new, empty collection of <see cref="PreElectionDisclosure"/> records with a predefined initial capacity.
 /// <param name="capacity">The number of pre-election disclosure statements that the collection can initially store.</param>
 /// </summary>
 public PreElectionDisclosureHistory(int capacity)
 {
     _general = new SubmissionHistory <PreElectionDisclosure>(capacity);
     _primary = new SubmissionHistory <PreElectionDisclosure>(capacity);
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new, empty collection of <see cref="StatementOfNeed"/> records.
 /// </summary>
 public StatementOfNeedHistory()
 {
     _general = new SubmissionHistory <StatementOfNeed>();
     _primary = new SubmissionHistory <StatementOfNeed>();
 }
 /// <summary>
 /// Initializes a new, empty collection of <see cref="PreElectionDisclosure"/> records.
 /// </summary>
 public PreElectionDisclosureHistory()
 {
     _general = new SubmissionHistory <PreElectionDisclosure>();
     _primary = new SubmissionHistory <PreElectionDisclosure>();
 }