public bool xoa(LapDonThuocDTO dt) { bool re = dtdal.xoa(dt); return(re); }
private void tB_Luu_Click(object sender, EventArgs e) { if (flag == "them") { LapDonThuocDTO dt = new LapDonThuocDTO(); dt.MaPK1 = comboBox_mapk.Text; dt.MaThuoc1 = comboBox_Loaithuoc.Text.Substring(1, 4); dt.SoLuong1 = int.Parse(tB_soluong.Text); dt.MaCD1 = comboBox_cachdung.Text.Substring(1, 5); bool kq = dtbus.them(dt); if (kq == true) { MessageBox.Show("Thêm thành công"); } else { MessageBox.Show("Thêm thất bại"); return; } } else if (flag == "sua") { LapDonThuocDTO dt = new LapDonThuocDTO(); dt.MaPK1 = comboBox_mapk.Text; dt.MaThuoc1 = comboBox_Loaithuoc.Text.Substring(1, 4); dt.SoLuong1 = int.Parse(tB_soluong.Text); dt.MaCD1 = comboBox_cachdung.Text.Substring(1, 5); bool kq = dtbus.sua(dt); if (kq == true) { MessageBox.Show("Sửa thành công"); } else { MessageBox.Show("Sửa thất bại"); return; } } else if (flag == "xoa") { LapDonThuocDTO dt = new LapDonThuocDTO(); dt.MaPK1 = comboBox_mapk.Text; dt.MaThuoc1 = comboBox_Loaithuoc.Text.Substring(1, 4); dt.SoLuong1 = int.Parse(tB_soluong.Text); dt.MaCD1 = comboBox_cachdung.Text.Substring(1, 5); bool kq = dtbus.xoa(dt); if (kq == true) { MessageBox.Show("Xóa thành công"); } else { MessageBox.Show("Xóa thất bại"); return; } } tB_huy.Visible = false; tB_Luu.Visible = false; tB_sua.Visible = true; tB_xoa.Visible = true; button3.Visible = true; load_datagridview(); }
public bool them(LapDonThuocDTO dt) { bool re = dtdal.them(dt); return(re); }