private void bAddCustomer_Click(object sender, EventArgs e) { if (CustomerDAO.Instance.CheckExistCustomerInDatabaseBySDT(this.tbCustomerSDT.Text)) { this.lNotificationCustomer.Text = "Khách hàng này đã tồn tại trong dữ liệu"; return; } else { this.lNotificationCustomer.Text = ""; } fCustomerAdd f = new fCustomerAdd(this.tbCustomerSDT.Text, this.tbCustomerName.Text); f.ShowDialog(); // Load lại thông tin string tmp = this.tbCustomerSDT.Text; this.tbCustomerSDT.Text = ""; this.tbCustomerSDT.Text = tmp; }
private void bEdit_Click(object sender, EventArgs e) { fCustomerAdd f = new fCustomerAdd(true); f.ShowDialog(); }