Ejemplo n.º 1
0
 public DailyLeaderboardsWorker(
     uint appId,
     ILeaderboardsContext db,
     ISteamClientApiClient steamClientApiClient,
     ILeaderboardsStoreClient storeClient,
     TelemetryClient telemetryClient)
 {
     this.appId           = appId;
     this.telemetryClient = telemetryClient;
     this.db = db;
     this.steamClientApiClient = steamClientApiClient;
     this.storeClient          = storeClient;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReplaysController"/> class.
 /// </summary>
 /// <param name="db">The leaderboards context.</param>
 public ReplaysController(ILeaderboardsContext db)
 {
     this.db = db;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PlayersController"/> class.
 /// </summary>
 /// <param name="db">The leaderboards context.</param>
 public PlayersController(ILeaderboardsContext db)
 {
     this.db = db;
 }