private void btnThemBan_Click(object sender, EventArgs e) { int soNguoi = 0; try { soNguoi = int.Parse(maskedTextBox_SoNguoi.Text); } catch { } frm_FormPhu_NhapSo f = new frm_FormPhu_NhapSo(); f.ShowDialog(); int SoBan = f.Number; if (SoBan <= 0) { return; } if (TimBanCoTrongHeThong(SoBan) == null) { Tables tempTable = new Tables(1, SoBan, this.txt_ViTriBan.Text, soNguoi); IDBanDangChon = Tables.AddWithOutput(tempTable); Orders tempOrder = new Orders(IDBanDangChon, this.txt_NhanVienOrder.Text, DateTime.Now, 0, 0, 0, 0); objOrder.Add(tempOrder); LoadDSBan(); IDOrderDangChon = Orders.GetOrderByTableID(IDBanDangChon)[0].OrderID; } else { MessageBox.Show("Bàn này đã tồn tại trong hệ thống", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } this.lblSoBan.Text = SoBan.ToString(); }