using Managing.Application.Abstractions.Services; using Microsoft.Extensions.Logging; using static Managing.Common.Enums; namespace Managing.Application.Workers; public class PricesFifteenMinutesWorker : PricesBaseWorker { public PricesFifteenMinutesWorker( ILogger logger, IPricesService pricesService, IServiceProvider serviceProvider, IStatisticService statisticService) : base( logger, pricesService, serviceProvider, statisticService, TimeSpan.FromMinutes(1), WorkerType.PriceFifteenMinutes, Timeframe.FifteenMinutes ) { } }