private void btnLuu_Click(object sender, EventArgs e) { var result = MessageBox.Show("Bạn có muốn lưu sự thay đổi xuống cơ sở dữ liệu hay không?", "Lưu thông tin", MessageBoxButtons.YesNo); if (result == DialogResult.Yes) { DataUpdate <HeThong_View> listUpdate = gridThaoTac.update(); if (HeThong_DAL.saves(listUpdate)) { MessageBox.Show("Lưu thông tin thành công!"); InitVal(); } else { MessageBox.Show("Lưu thông tin thất bại!"); } } }