BolfTracker.Web.Controllers.GameController.GameController C# (CSharp) Méthode

GameController() public méthode

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