Exemple #1
0
 public Table(List <Category> columns, List <Category> rows, CellStackStrategy css)
 {
     this.Columns           = columns;
     this.Rows              = rows;
     this.CellStackStrategy = css;
     this.TableArray        = this.GenerateTableArray();
     this.IsValid           = this.IsValidateTable();
     this.CalculateScore();
 }
Exemple #2
0
 public Table Clone(CellStackStrategy css) => new Table(this.Columns, this.Rows, css);