private void btnLuuCapNhatDichVu_Click(object sender, EventArgs e) { DichVu s = GetDichVu(); s.DichVuID = (int)dgvCapNhatDichVu.CurrentRow.Cells[1].Value; DichVu db = DichVu.GetDichVu(s.DichVuID); if (db != null) { db = s; db.InsertUpdate(); MessageBox.Show("Sửa thành công!"); } BindGrid(DichVu.GetAll()); }
private void btnThemDichVu_Click(object sender, EventArgs e) { try { DichVu s = GetDichVu(); DichVu db = DichVu.GetDichVu(s.DichVuID); if (db == null) { s.InsertUpdate(); MessageBox.Show("Thêm dịch vụ thành công!"); } BindGrid(DichVu.GetAll()); } catch (Exception ex) { MessageBox.Show(ex.Message); } }