BolfTracker.Web.Controllers.GameController.GameController C# (CSharp) Method

GameController() public method

public GameController ( IGameService gameService, IShotService shotService, IHoleService holeService, IPlayerService playerService, IRankingService rankingService ) : System
gameService IGameService
shotService IShotService
holeService IHoleService
playerService IPlayerService
rankingService IRankingService
return System
        public GameController(IGameService gameService, IShotService shotService, IHoleService holeService, IPlayerService playerService, IRankingService rankingService)
        {
            _gameService = gameService;
            _shotService = shotService;
            _holeService = holeService;
            _playerService = playerService;
            _rankingService = rankingService;
        }