public void themLoaiTaiLieu(string tentg) { if (string.IsNullOrEmpty(tentg)) { MessageBox.Show("Vui lòng nhập đầy đủ thông tin."); return; } LOAITAILIEU tg = new LOAITAILIEU(); tg.TenLoaiTaiLieu = tentg; tg.TinhTrangXoa = false; db.LOAITAILIEUs.InsertOnSubmit(tg); db.SubmitChanges(); MessageBox.Show("Thêm thành công."); }
public void suaLoaiTaiLieu(string matg, string tentg) { if (string.IsNullOrEmpty(tentg)) { MessageBox.Show("Vui lòng nhập đầy đủ thông tin."); return; } LOAITAILIEU tg = db.LOAITAILIEUs.Where(a => a.MaLoaiTaiLieu == int.Parse(matg)).FirstOrDefault(); if (tg != null) { tg.TenLoaiTaiLieu = tentg; db.SubmitChanges(); MessageBox.Show("Sửa thành công."); } else { MessageBox.Show("Sửa không thành công."); return; } }
public void xoaLoaiTaiLieu(string matg) { if (MessageBox.Show("Bạn có muốn xoá?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes) { LOAITAILIEU tg = db.LOAITAILIEUs.Where(a => a.MaLoaiTaiLieu == int.Parse(matg)).FirstOrDefault(); if (tg != null) { tg.TinhTrangXoa = true; db.SubmitChanges(); MessageBox.Show("Xoá thành công."); } else { MessageBox.Show("Xoá không thành công."); return; } } else { return; } }