コード例 #1
0
 public PokerHandShowdown(
     ICardGameService cardGameService,
     ICardHandCreator cardHandCreator,
     IOptions <ConfigSettings> options,
     ILogger <PokerHandShowdown> logger,
     IHostApplicationLifetime lifeTime
     )
 {
     _cardGameService = cardGameService;
     _cardHandCreator = cardHandCreator;
     _configSettings  = options.Value;
     _logger          = logger;
     _lifeTime        = lifeTime;
 }
コード例 #2
0
 public StarshipCardController(ICardGameService cardGameService)
 {
     _cardGameService = cardGameService;
 }