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;
        }