private void btnSave_Click(object sender, EventArgs e) { KhoaDAO dao = new KhoaDAO(); Khoa info = InitKhoa(); if (isAdd_) { if (dao.Add(info)) { MessageBox.Show("Thêm thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); result_ = true; this.Close(); } else { MessageBox.Show("Thêm thất bại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { if (dao.Edit(info)) { MessageBox.Show("Sửa thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); result_ = true; this.Close(); } else { MessageBox.Show("Sửa thất bại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
/// <summary> /// Chỉnh sửa khoa /// </summary> /// <param name="khoa"></param> /// <returns>true, false</returns> public bool Edit(Khoa khoa) { if (khoa == null) { return(false); } KhoaDAO context = new KhoaDAO(); try { context.Edit(khoa); return(true); } catch (Exception ex) { Console.WriteLine(ex); return(false); } }
private void btnSave_Click(object sender, EventArgs e) { KhoaDAO dao = new KhoaDAO(); Khoa khoa = CreateKhoa(); if (isAdd_) { if (dao.Add(khoa)) { MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); result_ = true; } else { MessageBox.Show("Thêm thất bại", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { if (dao.Edit(khoa)) { MessageBox.Show("Cập nhật thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); result_ = true; } else { MessageBox.Show("Cập nhật thất bại", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } if (result_) { this.Close(); } }