Exemple #1
0
 public ListBuilder(IT.IDocListener document)
 {
     if (document == null) {
     throw new System.ArgumentNullException("document", "document cannot be null." );
      }
      this.document = document;
 }
Exemple #2
0
 public ModuleBuilder(IT.IDocListener document, int year, int rowsPerPage)
 {
     if (document == null) {
     throw new System.ArgumentNullException("document", "document cannot be null");
      } else {
     this.document = document;
      }
      this.year = year;
      this.rowsPerPage = rowsPerPage;
 }