using Managing.Application.Abstractions.Services; using Microsoft.Extensions.Logging; using static Managing.Common.Enums; namespace Managing.Application.Workers; public class LeaderboardWorker : BaseWorker { private readonly IStatisticService _statisticService; private static readonly WorkerType _workerType = WorkerType.LeaderboardWorker; public LeaderboardWorker( ILogger logger, IServiceProvider serviceProvider, IStatisticService statisticService) : base( _workerType, logger, TimeSpan.FromHours(24), serviceProvider ) { _statisticService = statisticService; } protected override async Task Run(CancellationToken cancellationToken) { await _statisticService.UpdateLeaderboard(); } }