Esempio n. 1
0
 public IEnumerable <CountryModel> GetCountries()
 {
     return(AllowableShipCounties
            .OrderBy(x => x.Name).Select(x => new CountryModel()
     {
         CountryCode = x.CountryCode, Name = x.Name
     }));
 }
 public IEnumerable <CountryDisplay> GetCountries()
 {
     return(AllowableShipCounties
            .OrderBy(x => x.Name).Select(GetCountryDisplay));
 }