Exemplo n.º 1
0
 public WeekMatchupsCache(
     IAsyncLazyCache cache,
     IWeekMatchupSource source)
 {
     _cache  = cache;
     _source = source;
 }
Exemplo n.º 2
0
 public AddMissingWeeks(
     IAppLogger logger,
     IServiceProvider serviceProvider,
     IAsyncLazyCache cache)
     : base(logger, "Add Missing Weeks")
 {
     _serviceProvider = serviceProvider;
     _cache           = cache;
 }
Exemplo n.º 3
0
 public TeamWeekStatsCache(
     IAppLogger logger,
     IAsyncLazyCache cache,
     ITeamWeekStatsSource source,
     IWeekMatchupsCache weekMatchups)
 {
     _logger       = logger;
     _cache        = cache;
     _source       = source;
     _weekMatchups = weekMatchups;
 }