public List <Country> GetAll()
 {
     return(_countryDAL.GetAll().ToList());
 }
Example #2
0
 public static List <Country> GetList()
 {
     return(CountryDB.GetAll());
 }
Example #3
0
 public ICollection <Country> GetAll()
 {
     return(_countryDAL.GetAll());
 }