// Thêm loại sách public bool Add(LoaiSach value) { try { db.LoaiSach.Add(value); db.SaveChanges(); return true; } catch (Exception e) { Console.WriteLine(e.Message); return false; } }
private void btnAdd_Click(object sender, RoutedEventArgs e) { if (!CheckNull()) return; var record = new LoaiSach() { TenLoai = txtTenLoai.Text }; if (_db.Add(record)) { MessageBox.Show("Thêm loại sách thành công!"); LoadDS(); } else MessageBox.Show("Thêm loại sách thất bại!"); }
private void btnUpdate_Click(object sender, RoutedEventArgs e) { if (!CheckNull()) return; var record = new LoaiSach() { MaLoai = int.Parse(txtMaLoai.Text), TenLoai = txtTenLoai.Text }; if (_db.Update(record)) { MessageBox.Show("Cập nhật loại sách thành công!"); LoadDS(); } else MessageBox.Show("Cập nhật loại sách thất bại!"); }
// Cập nhật loại sách public bool Update(LoaiSach value) { try { LoaiSach record = db.LoaiSach.SingleOrDefault(v => v.MaLoai == value.MaLoai); record.TenLoai = value.TenLoai; db.SaveChanges(); return true; } catch (Exception e) { Console.WriteLine(e.Message); return false; } }