private void btnThem_Click(object sender, EventArgs e) { if (txtSoLuongTon.Text.Trim().Equals("") || txtTenThuoc.Text.Trim().Equals("") || txtDonGiaThuoc.Text.Trim().Equals("")) { MessageBox.Show("Loi"); } else { int blresult; blresult = 0; blresult = Convert.ToInt16(MessageBox.Show("Bạn có muốn thêm thuốc", "Thêm Thuốc", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation)); //MessageBox.Show(blresult.ToString()); if (blresult == 1) { th_DTO = new Thuoc_DTO(); th_BUS = new Thuoc_BUS(); th_DTO.MaThuoc = txtMaThuoc.Text.Trim(); th_DTO.Tenthuoc = txtTenThuoc.Text.Trim(); th_DTO.MaDonVi = madonvi; th_DTO.Soluong = txtSoLuongTon.Text; th_DTO.Gia = txtDonGiaThuoc.Text; th_DTO.MaNhaCungCap = manhacungcap; th_BUS.NhapThongTinThuocMoi(th_DTO); FrmThuoc_GUI FrmThuoc = new FrmThuoc_GUI(); Close(); FrmThuoc.Show(); } } }
private void btnXoa_Click(object sender, EventArgs e) { int blresult; blresult = 0; blresult = Convert.ToInt16(MessageBox.Show("Bạn có muốn xóa Thuoc", "Xóa Thuoc", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation)); //MessageBox.Show(blresult.ToString()); if (blresult == 1) { th_DTO = new Thuoc_DTO(); th_BUS = new Thuoc_BUS(); th_DTO.MaThuoc = txtMaThuoc.Text.Trim(); th_BUS.XoaThuoc(th_DTO); } FrmThuoc_GUI FrmThuoc = new FrmThuoc_GUI(); Close(); FrmThuoc.Show(); }
private void btnQuanLiThuoc_Click(object sender, EventArgs e) { FrmThuoc_GUI FrmThuoc = new FrmThuoc_GUI(); FrmThuoc.Show(); }