Ejemplo n.º 1
0
 public DataTables(DataTable[] dataTables)
 {
     this.type       = DataTablesType.DataTables;
     this.dataSet    = null;
     this.dataTable  = null;
     this.dataTables = dataTables ?? throw new ArgumentNullException(nameof(dataTables));
 }
Ejemplo n.º 2
0
 public DataTables(DataTable dataTable)
 {
     this.type       = DataTablesType.DataTable;
     this.dataSet    = null;
     this.dataTable  = dataTable ?? throw new ArgumentNullException(nameof(dataTable));
     this.dataTables = null;
 }