feat(api): статистика отображается в часовом поясе клиента

This commit is contained in:
Mikhail Trubnikov
2026-03-05 10:19:54 +10:00
parent 7c9d9b34e5
commit b2b5516326
30 changed files with 1333 additions and 2011 deletions

View File

@@ -12,14 +12,14 @@ namespace PARR.TemplateDistributor
{
private readonly ILogger<TemplateDistributor> logger;
//private readonly INextRunService nextRunService;
private readonly INextRunServiceV2 nextRunService;
private readonly INextRunService nextRunService;
private readonly ITemplateService templateService;
private readonly IRobotConfigurationService robotConfigurationService;
public TemplateDistributor(
ILogger<TemplateDistributor> logger,
//INextRunService nextRunService,
INextRunServiceV2 nextRunService,
INextRunService nextRunService,
ITemplateService templateService,
IRobotConfigurationService robotConfigurationService
)