public Boolean KiemTraDoTuoiTruocKhiLuu(String doTuoiColumn) { foreach (DataGridViewRow row in dgvNhanVien.Rows) { if (row.Cells[doTuoiColumn].Value != null) { DateTime ngaySinh = Convert.ToDateTime(row.Cells[doTuoiColumn].Value.ToString()); if (quyDinh.KiemTraDoTuoiNhanVien(ngaySinh) == false) { MessageBoxEx.Show("Tuổi nhân viên " + row.Cells["TenNhanVien"].Value.ToString() + " không đúng quy định!", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); return(false); } } } return(true); }