public IEnumerable <Country> GetAll()
 {
     return(_countryLogic.GetAll());
 }
Exemple #2
0
 /// <summary>
 ///     Liefert alle Länder
 /// </summary>
 /// <returns></returns>
 public IList <Country> GetAll()
 {
     return(_countryDao.GetAll().OrderBy(x => x.Name).ToList());
 }
Exemple #3
0
 public ICollection <Country> GetAll()
 {
     return(countries.GetAll());
 }