public TablesController(TableViewService tables, IdGenerator idGenerator)
 {
     _tables      = tables;
     _idGenerator = idGenerator;
 }
Beispiel #2
0
 public AdminController(IdGenerator idGenerator, TableViewService tables)
 {
     _idGenerator = idGenerator;
     _tables      = tables;
 }
Beispiel #3
0
 public GameController(TableViewService tables)
 {
     _tables = tables;
 }