public bool ValidateAge(DateTime dob) { var now = _dateTimeHelper.Now(); var datePlus18 = dob.AddYears(AgeThreshold); return(now >= datePlus18); }