Exemplo n.º 1
0
 public MatchController
 (
     IJackpotMatchManager jackpotMatchManager
 )
 {
     _jackpotMatchManager = jackpotMatchManager;
 }
Exemplo n.º 2
0
 public TestController(
     ISteamHubConnections steamHubConnections,
     IMatchHubConnections matchHubConnections,
     IRepoServiceFactory repoServiceFactory,
     IJackpotMatchManager jackpotMatchManager,
     ICoinFlipManager coinFlipManager,
     IDatabaseConnectionFactory connectionFactory,
     IGrpcServiceFactory grpcService
     )
 {
     _steamHubConnections   = steamHubConnections;
     _repoServiceFactory    = repoServiceFactory;
     _jackpotMatchManager   = jackpotMatchManager;
     _coinFlipManager       = coinFlipManager;
     _discordSercviceClient = grpcService.GetDiscordSercviceClient();
 }