feat: Сервисы и модели RabbitMq разнесены согласно архитектуры

This commit is contained in:
Mikhail Trubnikov
2026-04-14 12:01:49 +10:00
parent 734c2e3c99
commit e892aa12d3
196 changed files with 589 additions and 1232 deletions

View File

@@ -1,5 +1,5 @@
using Microsoft.Extensions.Logging;
using PARR.BLL.Services.Interfaces;
using PARR.Core.Common.RabbitServices;
using PARR.DAL.Contracts;
using PARR.DAL.Models;
using PARR.EsppSync;
@@ -12,7 +12,7 @@ namespace PARR.EsppTemplateSync
{
private readonly ILogger<TemplateMQSyncer> logger;
private readonly GlobalSettings globalSettings;
private readonly IMqService mqService;
private readonly IRabbitService mqService;
private readonly SettingsFromDb settingsFromDb;
private readonly ISyncService<EsppObjectTemplate> syncService;
@@ -20,7 +20,7 @@ namespace PARR.EsppTemplateSync
public TemplateMQSyncer(
ILogger<TemplateMQSyncer> logger,
GlobalSettings globalSettings,
IMqService mqService,
IRabbitService mqService,
SettingsFromDb settingsFromDb,
ISyncService<EsppObjectTemplate> syncService
)