public bool CapNhapDonThuoc(DonThuoc dt) { string sql = string.Format(" Update DONTHUOC set NgayTao = N'{0}', GioTao = '{1}', LoiDan = N'{2}', MaBacSi = '{3}' where MaDonThuoc = '{4}'", dt.NgayTao.ToString("MM/dd/yyyy"), dt.GioTao.ToString("hh:mm:ss"), dt.LoiDan, dt.MaBacSi, dt.MaDonThuoc); if (connData.ExcuteQuery(sql)) return true; return false; }
//Lay thong tin don thuoc luu vao DONTHUOC private DonThuoc LayThongTinDonThuoc() { DonThuoc dt = new DonThuoc(); dt.MaBacSi = txtDonThuoc_MaBacSi.Text; dt.MaDonThuoc = txtDonThuoc_MaDonThuoc.Text; dt.MaBacSi = txtDonThuoc_MaBacSi.Text; dt.MaBenhNhan = txtDonThuoc_MaBenhNhan.Text; dt.MaBacSi = txtDonThuoc_MaBacSi.Text; dt.MaThuoc = txtDonThuoc_MaThuoc.Text; dt.NgayTao = Convert.ToDateTime(dtPickerDonThuoc_NgayTao.Value.ToString()); dt.GioTao = Convert.ToDateTime(dtPicker_GioTaoDonThuoc.Value.ToString()); dt.LoiDan = txtDonThuoc_LoiDan.Text; return dt; }
//ham lay thong tin chi tiet don thuoc private DonThuoc LayThongTinChiTietThuoc() { DonThuoc dt = new DonThuoc(); dt.MaDonThuoc = txtDonThuoc_MaDonThuoc.Text; dt.MaThuoc = txtDonThuoc_MaThuoc.Text; dt.MaBenhNhan = txtDonThuoc_MaBenhNhan.Text; dt.SoLuong = Convert.ToInt32(txtDonThuoc_SoLuong.Text); dt.Ngay1 = cboDonThuoc_UongNho.Text; dt.Ngay2 = Convert.ToInt32(txtDonThuoc_SoLanUongNho.Text); dt.MoiLan1 = Convert.ToInt32(txtDonThuoc_MoiLan.Text); dt.MoiLan2 = cboDonThuoc_VienGiot.Text; dt.ThoiDiemSuDung = txtDonThuoc_ThoiDiemSuDung.Text; return dt; }
public void TaoMoiDonThuocBN(DonThuoc dt1) { string sql = string.Format("Insert into DONTHUOC(STT, MaDonThuoc, MaBenhNhan) values('{0}', '{1}', '{2}')", "0", dt1.MaDonThuoc, dt1.MaBenhNhan); connData.ExcuteQuery(sql); }
//luu thong tin don thuoc public bool LuuThongTinDonThuoc(DonThuoc dt) { string sql = string.Format("Insert into DONTHUOC(STT, MaDonThuoc, MaBenhNhan, MaBacSi, NgayTao, GioTao, LoiDan) values('{0}', '{1}', '{2}', '{3}', N'{4}', '{5}', N'{6}')", "0", dt.MaDonThuoc, dt.MaBenhNhan, dt.MaBacSi, dt.NgayTao.ToString("MM/dd/yyyy"), dt.GioTao.ToString("hh:mm:ss") ,dt.LoiDan); if (connData.ExcuteQuery(sql)) return true; return false; }
//Luu thong tin chi tiet don thuoc public void LuuThongTinChiTietDonThuoc(DonThuoc dt) { string sql = string.Format("Insert into CHITIETDONTHUOC(STT,MaDonThuoc, MaThuoc, SoLuong, Ngay1, Ngay2, MoiLan1, MoiLan2, ThoiDiemSuDung) " + " values('{0}', '{1}', '{2}', '{3}', N'{4}', N'{5}', N'{6}', N'{7}', N'{8}')", "0", dt.MaDonThuoc, dt.MaThuoc, dt.SoLuong, dt.Ngay1, dt.Ngay2, dt.MoiLan1, dt.MoiLan2, dt.ThoiDiemSuDung); connData.ExcuteQuery(sql); }