Ejemplo n.º 1
0
 public TeamWeekStatsCache(
     IAppLogger logger,
     IAsyncLazyCache cache,
     ITeamWeekStatsSource source,
     IWeekMatchupsCache weekMatchups)
 {
     _logger       = logger;
     _cache        = cache;
     _source       = source;
     _weekMatchups = weekMatchups;
 }
Ejemplo n.º 2
0
 public GetTeamWeekStats(
     IAppLogger logger,
     ITeamWeekStatsSource source,
     IWeekMatchupsCache weekMatchupsCache,
     WebRequestThrottle throttle)
     : base(logger, "Get Team Week Stats")
 {
     _source            = source;
     _weekMatchupsCache = weekMatchupsCache;
     _throttle          = throttle;
 }