Files
managing-apps/src/Managing.Application/Workers/PricesFifteenMinutesWorker.cs
2025-08-05 17:53:19 +07:00

24 lines
691 B
C#

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