// Thêm NXB public bool Add(NXB value) { try { db.NXB.Add(value); db.SaveChanges(); return true; } catch (Exception e) { Console.WriteLine(e.Message); return false; } }
private void btnAdd_Click(object sender, System.Windows.RoutedEventArgs e) { if (!CheckNull()) return; var record = new NXB() { TenNXB = txtTenNXB.Text }; if(_db.Add(record)) { MessageBox.Show("Thêm nhà xuất bản thành công!"); LoadDS(); } else MessageBox.Show("Thêm nhà xuất bản thất bại!"); }
private void btnUpdate_Click(object sender, RoutedEventArgs e) { if (!CheckNull()) return; var record = new NXB() { MaNXB = int.Parse(txtMaNXB.Text), TenNXB = txtTenNXB.Text }; if (_db.Update(record)) { MessageBox.Show("Cập nhật nhà xuất bản thành công!"); LoadDS(); } else MessageBox.Show("Cập nhật nhà xuất bản thất bại!"); }
// Cập nhật NXB public bool Update(NXB value) { try { NXB record = db.NXB.SingleOrDefault(v => v.MaNXB == value.MaNXB); record.TenNXB = value.TenNXB; db.SaveChanges(); return true; } catch (Exception e) { Console.WriteLine(e.Message); return false; } }