private void btnSaveHangHoa_Click(object sender, EventArgs e) { HangHoaDTO dto = new HangHoaDTO(); addData(dto); if (txtTenHH.Text.Length <= 0) { lblThongBao.Text = "Chưa nhập Tên Hàng Hóa !"; } else if (txtDVT.Text.Length <= 0) { lblThongBao.Text = "Chưa nhập Đơn Vị Tính !"; } else if (Convert.ToDecimal(txtGiaBan.Text.Length) <= 0) { lblThongBao.Text = "Chưa nhập Giá Bán !"; } else if (Convert.ToDecimal(txtGiaMua.Text.Length) <= 0) { lblThongBao.Text = "Chưa nhập Giá Mua !"; } else { if (hanghoaBUS.AddData(dto)) { MessageBox.Show("Thêm thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { MessageBox.Show("Thêm Lại đê bạn ơi,wrong rùi :>", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }