feat(core): TaskManagementService - отправка сообщений

This commit is contained in:
Mikhail Trubnikov
2026-04-15 16:48:23 +10:00
parent 6d792f04b1
commit 2a6fd7177d
8 changed files with 103 additions and 33 deletions

View File

@@ -3,6 +3,8 @@ using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using PARR.Core.Common.Implementations;
using PARR.Core.Common.Interfaces;
using PARR.Core.Services.Task.Implementations;
using PARR.Core.Services.Task.Interfaces;
using PARR.Domain.Settings;
namespace PARR.Core
@@ -37,6 +39,7 @@ namespace PARR.Core
#region Services
services.AddScoped<ITaskManagementService, TaskManagementService>();
//services.AddScoped<IUserService, UserService>();
#endregion