feat: Перенесен IntervalService

This commit is contained in:
Mikhail Trubnikov
2026-04-14 13:49:43 +10:00
parent d4176721eb
commit 13dd2815d4
17 changed files with 43 additions and 181 deletions

View File

@@ -7,7 +7,7 @@ namespace PARR.EsppTemplateSync
internal class TemplateFileSyncer : ITemplateSyncer
{
private readonly ILogger<TemplateFileSyncer> logger;
private readonly IFileService fileService;
//private readonly IFileService fileService;
private readonly GlobalSettings globalSettings;
//private readonly IManager manager;
private readonly string dirPath;
@@ -18,13 +18,13 @@ namespace PARR.EsppTemplateSync
public TemplateFileSyncer(
BLL.Settings.StorageSettings storageSettings,
ILogger<TemplateFileSyncer> logger,
IFileService fileService,
//IFileService fileService,
GlobalSettings globalSettings//,
// IManager manager
)
{
this.logger = logger;
this.fileService = fileService;
//this.fileService = fileService;
this.globalSettings = globalSettings;
//this.manager = manager;
if (storageSettings.EsppTemplates == null)