BolfTracker.Services.ShotService.GetShots C# (CSharp) Метод

GetShots() публичный Метод

public GetShots ( int gameId ) : IEnumerable
gameId int
Результат IEnumerable
        public IEnumerable<Shot> GetShots(int gameId)
        {
            return _shotRepository.GetByGame(gameId);
        }