private void btnSave_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtTenGoiNho.Text)) { MessageBox.Show("Nhập tên gợi nhớ cho ghi chú xử lý."); txtTenGoiNho.Focus(); return; } if (string.IsNullOrEmpty(cboLoaiXuLy.Text)) { MessageBox.Show("Chọn loại tình huống cho ghi chú xử lý."); cboLoaiXuLy.Focus(); return; } VanDe objVande = new VanDe(); objVande.GhiChu = txtGhiChu.Text; objVande.NgayCapNhat = DateTime.Now.Date; objVande.Ten = txtTenGoiNho.Text; objVande.IDLoaiVD = new DataAccess().getIDLoaiVDByTenLoaiVD(cboLoaiXuLy.Text); objVande.UserID = Program.IDNhanvien; if (!string.IsNullOrEmpty(txtTien.Text)) { objVande.Tien = Convert.ToInt32(txtTien.Text); } if (new DataAccess().insertVanDe(objVande) >= 0) { MessageBox.Show("Thêm ghi chú thành công"); this.Close(); } else { MessageBox.Show("Thêm ghi chú không thành công"); this.Close(); } }
public bool deleteVanDe(VanDe objVanDe) { return(new VanDeService().deleteVanDe(objVanDe)); }
public bool updateVanDe(VanDe objVanDe) { return(new VanDeService().updateVanDe(objVanDe)); }
public int insertVanDe(VanDe objVanDe) { return(new VanDeService().insertVanDe(objVanDe)); }