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

        {
            return(_repo.GetAll());
        }