Monday 3 October 2016


private int?  GetCountryIdByCountryName(int countryName)
{

int? countryId= Country!= null ? (int?)Country.Id: null;
return countryId
}