Exemplo n.º 1
0
        public int?LookupGender(string genderSourceValue)
        {
            var res = _genderConcepts.LookupValue(genderSourceValue);

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