public bool MatchesEnrolleeByName(Enrollee enrollee)
 {
     if (string.IsNullOrWhiteSpace(FirstName) || string.IsNullOrWhiteSpace(LastName))
     {
         throw new InvalidOperationException("PharmaNet college record is missing the first or last name, cannot be a valid record.");
     }