예제 #1
0
        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();
            }
        }
예제 #2
0
 public bool deleteVanDe(VanDe objVanDe)
 {
     return(new VanDeService().deleteVanDe(objVanDe));
 }
예제 #3
0
 public bool updateVanDe(VanDe objVanDe)
 {
     return(new VanDeService().updateVanDe(objVanDe));
 }
예제 #4
0
 public int insertVanDe(VanDe objVanDe)
 {
     return(new VanDeService().insertVanDe(objVanDe));
 }