private void btnSave_Click(object sender, EventArgs e) { SupplierDTO supDTO = new SupplierDTO(); supDTO.MaNCC = txtMa.Text; supDTO.TenNCC = txtTen.Text; supDTO.NguoiLienHe = txtNLH.Text; supDTO.MaKV = cbKhuVuc.EditValue != null?cbKhuVuc.EditValue.ToString() : null; supDTO.Fax = txtFax.Text; supDTO.DienThoai = txtDT.Text; supDTO.DiDong = txtDiDong.Text; supDTO.DiaChi = txtDiaChi.Text; supDTO.Active = bool.Parse(checkAc.Checked.ToString()); supDTO.ChucVu = txtChucVu.Text; int check = supBus.InsertSupplier(supDTO); if (check == 1) { //ThemThanhCong(); XtraMessageBox.Show("Insert thành công"); this.Close(); } else { XtraMessageBox.Show("Insert thất bại"); } }