예제 #1
0
 public GameController(
     GameService gameService,
     ContextService contextService,
     GameManagementService gameManagementService,
     GameCreationService gameCreationService
     )
 {
     _gameService           = gameService;
     _contextService        = contextService;
     _gameManagementService = gameManagementService;
     _gameCreationService   = gameCreationService;
 }
예제 #2
0
 public DevelopmentController(
     MainDbContext context,
     PlayerService playerService,
     GameManagementService gameService,
     GameCreationService gameCreationService
     )
 {
     _context               = context;
     _playerService         = playerService;
     _gameManagementService = gameService;
     _gameCreationService   = gameCreationService;
 }
예제 #3
0
 public GameController(GameCreationService gameCreationService)
 {
     _gameCreationService = gameCreationService;
 }