private void btndelete_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { try { using (quanLyCongViecEntities = new QuanLyCongViecEntities()) { quanLyCongViecEntities.DeleteGDKyBanHanh(IdEdit); } XtraMessageBox.Show("Xóa thông tin thành công"); GetAllNull(); } catch (Exception) { XtraMessageBox.Show("Lỗi kết nối đến cơ sở dữ liệu"); } }
private void barBtnDelete_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { Guid guid = (Guid)grvVanbanGDKy.GetFocusedRowCellValue("Id"); try { using (quanLyCongViecEntities = new QuanLyCongViecEntities()) { quanLyCongViecEntities.DeleteGDKyBanHanh(guid); } XtraMessageBox.Show("Xóa thông tin thành công"); GetAllGDKyBanHanh(); } catch (Exception) { XtraMessageBox.Show("Lỗi kết nối đến cơ sở dữ liệu"); } }