feat: Сервисы и модели RabbitMq разнесены согласно архитектуры
This commit is contained in:
@@ -7,9 +7,9 @@ using PARR.API.Contracts.V1.Responses.Base;
|
||||
using PARR.API.Controllers.V1.Base;
|
||||
using PARR.API.Services.Interfaces;
|
||||
using PARR.API.Settings;
|
||||
using PARR.BLL.Domain.Mq;
|
||||
using PARR.BLL.Services.Interfaces;
|
||||
using PARR.Constants;
|
||||
using PARR.Core.Common.RabbitServices;
|
||||
using PARR.Domain.Common.Rabbit.Messages;
|
||||
using PARR.Domain.Common.Roles;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
@@ -21,13 +21,13 @@ namespace PARR.API.Controllers.V1
|
||||
[Authorize(Roles = ParrRoles.Administrator.Role)]
|
||||
public class DistributorController : BaseApiController
|
||||
{
|
||||
private readonly IMqService mqService;
|
||||
private readonly IRabbitService mqService;
|
||||
private readonly MqSettings mqSettings;
|
||||
private readonly IValidator<DistributeRequest> validator;
|
||||
private readonly IClientService clientService;
|
||||
|
||||
public DistributorController(
|
||||
IMqService mqService,
|
||||
IRabbitService mqService,
|
||||
MqSettings mqSettings,
|
||||
IValidator<DistributeRequest> validator,
|
||||
IClientService clientService
|
||||
|
||||
Reference in New Issue
Block a user