BolfTracker.Web.Controllers.GameController.GameController C# (CSharp) Метод

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

public GameController ( IGameService gameService, IShotService shotService, IHoleService holeService, IPlayerService playerService, IRankingService rankingService ) : System
gameService IGameService
shotService IShotService
holeService IHoleService
playerService IPlayerService
rankingService IRankingService
Результат System
        public GameController(IGameService gameService, IShotService shotService, IHoleService holeService, IPlayerService playerService, IRankingService rankingService)
        {
            _gameService = gameService;
            _shotService = shotService;
            _holeService = holeService;
            _playerService = playerService;
            _rankingService = rankingService;
        }