feat(dal): TaskManagementService - создать задачу в БД и отправить в очередь

This commit is contained in:
Mikhail Trubnikov
2026-03-23 16:56:31 +10:00
parent eb116bc16e
commit 583da7e433
14 changed files with 220 additions and 116 deletions

View File

@@ -4,6 +4,7 @@ using PARR.API.Contracts.V1;
using PARR.API.Contracts.V1.Responses.Base;
using PARR.API.Controllers.V1.Base;
using PARR.API.Services.Interfaces;
using PARR.API.Settings;
using PARR.DAL.Cache.Services.Base;
using PARR.DAL.NextRunServices;
using PARR.DAL.Services.Interfaces;
@@ -23,7 +24,8 @@ namespace PARR.API.Controllers.V1
IClientService clientService,
IRedisCacheService redisCacheService,
INextRunService nextRunService,
ITemplateService templateService
ITemplateService templateService,
MqSettings mqSettings
)
{
this.clientService = clientService;