private bool IsDocGiaValid(DateTime ngaySinh) { int tuoiToiThieu = ThamSoBUS.GetTuoiToiThieu(); int tuoiToiDa = ThamSoBUS.GetTuoiToiDa(); int tuoiDG = DateTime.Now.Year - ngaySinh.Year; if (tuoiToiThieu <= tuoiDG && tuoiDG <= tuoiToiDa) { return(true); } MessageBox.Show(this, "Tuổi độc giả không phù hợp với quy định", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); return(false); }