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