private void btnSelectStaff_Click(object sender, EventArgs e) { string notiId = CodeAutomaticID.NextID(scheduleBus.getLastIdNotiBus(), "TB"); scheduleBus.InsertNotification(notiId, schedule.ID, DateTime.Now, DateTime.Now.AddHours(3), 2); for (int i = 0; i < dgvSelectStaff.SelectedRows.Count; i++) { string staffSelectId = dgvSelectStaff.SelectedRows[i].Cells["MaCanBo"].Value.ToString(); scheduleBus.SendNotifcation(notiId, staffSelectId); } if (statusButton == 1) { MessageBox.Show("Tạo lịch công việc thành công", "Thông báo"); } else if (statusButton == 2) { MessageBox.Show("Thay đổi thành công", "Thông báo"); } this.Close(); }