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

@@ -26,6 +26,7 @@ using PARR.DAL.Services.Interfaces.Schedule;
using PARR.DAL.Services.Interfaces.TaskServices;
using PARR.DAL.Services.Interfaces.Unit;
using PARR.DAL.Settings;
using PARR.DAL.TaskServices;
using StackExchange.Redis;
namespace PARR.DAL
@@ -150,6 +151,9 @@ namespace PARR.DAL
services.AddTransient<ITaskErrorService, TaskErrorService>();
services.AddTransient<ITaskService, TaskService>();
services.AddTransient<ITaskTypeService, TaskTypeService>();
services.AddTransient<ITaskManagementService, TaskManagementService>();
#endregion