BolfTracker.Services.ShotService.GetShots C# (CSharp) Method

GetShots() public method

public GetShots ( int gameId ) : IEnumerable
gameId int
return IEnumerable
        public IEnumerable<Shot> GetShots(int gameId)
        {
            return _shotRepository.GetByGame(gameId);
        }