private void btnLuu_Click(object sender, EventArgs e) { try { if (txtTenHH.Text == "" || txtDonViTinh.Text == "" || txtGiaBan.Text == "" || txtGiaGoc.Text == "" || txtSoLuong.Text == "") { MessageBox.Show("Không được để trống"); return; } hangHoa = new HangHoa(); hangHoa.TenHH = txtTenHH.Text; hangHoa.LoaiHang = cboLoai.SelectedValue.ToString(); hangHoa.SoLuong = int.Parse(txtSoLuong.Text); hangHoa.GiaGoc = int.Parse(txtGiaGoc.Text); hangHoa.GiaBan = int.Parse(txtGiaBan.Text); hangHoa.DonViTinh = txtDonViTinh.Text; if (bll.Insert(hangHoa)) { MessageBoxEx.Show("Thêm thành công", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { MessageBoxEx.Show("Có lỗi xảy ra, vui lòng thử lại", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); this.Close(); } } catch (FormatException) { MessageBox.Show("Vui lòng nhập đúng số!"); } }