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();
 }
 public FormReceptionDetail()
 {
     InitializeComponent();
     currentReception   = null;
     tablesMapGenerator = null;
 }
 public FormReceptionDetail() {
   InitializeComponent();
   currentReception = null;
   tablesMapGenerator = null;
 }
 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();
 }