feat: Сервисы и модели RabbitMq разнесены согласно архитектуры
This commit is contained in:
@@ -5,9 +5,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.Core.Common.RabbitServices;
|
||||
using PARR.DAL.DomainServices.Interfaces;
|
||||
using PARR.Domain.Common.Rabbit.Messages;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace PARR.API.Controllers.V1
|
||||
public class SyncTaskController : BaseApiController
|
||||
{
|
||||
private readonly ILogger<SyncTaskController> logger;
|
||||
private readonly IMqService mqService;
|
||||
private readonly IRabbitService mqService;
|
||||
private readonly IUriService uriService;
|
||||
private readonly MqSettings mqSettings;
|
||||
private readonly IClientService clientService;
|
||||
@@ -24,7 +24,7 @@ namespace PARR.API.Controllers.V1
|
||||
|
||||
public SyncTaskController(
|
||||
ILogger<SyncTaskController> logger,
|
||||
IMqService mqService,
|
||||
IRabbitService mqService,
|
||||
IUriService uriService,
|
||||
MqSettings mqSettings,
|
||||
IClientService clientService,
|
||||
|
||||
Reference in New Issue
Block a user