public int?LookupGender(string genderSourceValue) { var res = _genderConcepts.LookupValue(genderSourceValue); if (!res.HasValue || res.Value == 0) { return(8551); // UNKNOWN } return(res); }
public int?LookupGender(string genderSourceValue) { return((int?)genderConcepts.LookupValue(genderSourceValue)); }