Esempio n. 1
0
 public BlackBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Esempio n. 2
0
 public LightBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Esempio n. 3
0
 public BlackBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Esempio n. 4
0
 public LightBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Esempio n. 5
0
 public LightBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Esempio n. 6
0
 public LightBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Esempio n. 7
0
 public NookBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Esempio n. 8
0
 public NookBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Esempio n. 9
0
 public Box(IBoxHelper helper, Position pos)
 {
     Helper   = helper;
     Position = new Position(pos);
 }
Esempio n. 10
0
 public Box(IBoxHelper helper, int row, int column)
 {
     Helper   = helper;
     Position = new Position(row, column);
 }