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,10 +1,9 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using PARR.BLL.Domain.Mq;
using PARR.BLL.Services.Interfaces;
using PARR.Constants;
using PARR.Core.Common.RabbitServices;
using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces;
using PARR.Domain.Common.Rabbit.Messages;
using PARR.Domain.Enums;
using PARR.Master.Settings;
using System.Text.Encodings.Web;
@@ -19,7 +18,7 @@ namespace PARR.Master.Services
private readonly IAgentHistoryService agentHistoryService;
private readonly OrderManageSettings orderManageSettings;
private readonly MqSettings mqSettings;
private readonly IMqService mqService;
private readonly IRabbitService mqService;
private static readonly JsonSerializerOptions jsonOptions = new JsonSerializerOptions
{
@@ -32,7 +31,7 @@ namespace PARR.Master.Services
IAgentHistoryService agentHistoryService,
OrderManageSettings orderManageSettings,
MqSettings mqSettings,
IMqService mqService
IRabbitService mqService
)
{