private void buttonTablesMapGenerate_Click(object sender, EventArgs e)
 {
     tablesMapGenerator = new TablesMapGenerator(currentReception.ReceptionId);
     tablesMapGenerator.Generate();
     tablesMap = tablesMapGenerator.ToList();
     buttonTablesMapSave.Enabled     = true;
     buttonTablesMapGenerate.Enabled = false;
     ShowTablesMap();
 }
 private void buttonTablesMapGenerate_Click(object sender, EventArgs e) {
   tablesMapGenerator = new TablesMapGenerator(currentReception.ReceptionId);
   tablesMapGenerator.Generate();
   tablesMap = tablesMapGenerator.ToList();
   buttonTablesMapSave.Enabled = true;
   buttonTablesMapGenerate.Enabled = false;
   ShowTablesMap();
 }