BolfTracker.Infrastructure.EntityFramework.GameRepository.All C# (CSharp) 메소드

All() 공개 메소드

public All ( ) : IEnumerable
리턴 IEnumerable
        public IEnumerable<Game> All()
        {
            using (var context = new BolfTrackerContext())
            {
                return context.Games.ToList();
            }
        }