Ejemplo n.º 1
0
 internal IEnumerable <Knight> GetAll()
 {
     return(_repo.GetAll());
 }
Ejemplo n.º 2
0
        public IEnumerable <Knight> GetAll()
        // IEnumerable takes the place of any collection type (List, Array, etc...)

        {
            return(_repo.GetAll());
        }